{{-- * Created by PhpStorm. * User: negutierrez * Date: 26/08/2016 * Time: 14:48 * Modificado por Judith López, fecha: 22/06/2018 --}} @extends('layouts.main') @section('title', 'Historico de pagos por Cliente') @section('header') {{----}} {{--@if(\Session::get('conexion') == 'guiaelectronica' && \Session::get('fromge') == true)--}} @if(\Session::get('conexion') == 'guiaelectronica' && \Session::get('fromge') == true) @endif @endsection @section('content')

Historial de Pagos por Cliente


@if(count($requestListPagos['entidadRespuesta']) > 0)

@foreach($requestListPagos['entidadRespuesta'] as $value) {{--{{dump ($value)}}--}} @endforeach
# N° Pago Fecha de Pago Monto Total Nombre Pagador N° Transferencia Estatus
{{ $i }} {{ $value['idpago'] }} {{ date('d/m/Y', strtotime($value['fechapago'])) }} {{ money_format('%.2n',$value['montototal']) }} {{$value['nombrepagador']}} {{$value['referencia']}} {{$value['listestatuspago']['nombre']}} Detalle {{-- @if($value['conciliado'] == false)--}} @if($value['listestatuspago']['idestatuspago'] == 1 || $value['listestatuspago']['idestatuspago'] == 8) Editar {{-- @endif--}} @endif

Tipo de Búsqueda

@if ($errors->has('tipo_envio')) {{ $errors->first('tipo_envio') }} @endif
{!! Form::text('detailGuiaFac','',['id'=>'detailGuiaFac', 'class'=>'form-control input-sm inputs-inline typeahead text-uppercase', 'placeholder'=>'Ingrese su numero de Guía/Factura', 'data-url' => route('getConsumirAjax'), 'maxlength' => 18 ]) !!}
Ejemplo: 00X000-00000000 | 00X000-000000


N° Pago Fecha de Pago Monto Total Nombre Pagador N° Transferencia Estatus  

@else

No posee Historial

@endif
@endsection @section('script') @endsection