@extends('layouts.baseprolist') @section('content') @include('_pagos.daviviendapayment.top')

Listado de Davivienda Pago Payments

{!!Form::open(['url'=>'filtrarDaviviendaPayment', 'method'=>'POST'])!!}
{!!Form::text('texto',null, ['class'=>'form-control','placeholder'=>'Ingrese el texto de su búsqueda '])!!}
{!!Form::close()!!}
@foreach($daviviendaPayments as $daviviendaPayment) @endforeach
# Title Payment Id Client Id State Code Type Sell Amount Fecha Creación Acción
{{$daviviendaPayment->id}} {{$daviviendaPayment->title}} {{$daviviendaPayment->paymentId}} {{$daviviendaPayment->clientId}} {{$daviviendaPayment->state}} {{$daviviendaPayment->txtCode}} {{$daviviendaPayment->typeSell}} {{$daviviendaPayment->amount}} {{$daviviendaPayment->created_at}}
# Title Payment Id Client Id State Code Type Sell Amount Fecha Creación Acción
@if( Request::path() =='daviviendaPayments' ) @include('pagination.default-limit-links', ['paginator' => $daviviendaPayments, 'filters' => '']) @else @include('pagination.default-limit-links', ['paginator' => $daviviendaPayments, 'filters' => '&texto='. $texto ]) @endif
@endsection