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

Listado de Mercado Pago Payments

{!!Form::open(['url'=>'filtrarMercadoPagoPayments', 'method'=>'POST'])!!}
{!!Form::text('texto',null, ['class'=>'form-control','placeholder'=>'Ingrese el texto de su búsqueda '])!!}
{!!Form::select('source_id',$sources,null, ['class'=>'form-control','placeholder'=>'Seleccione un source'])!!}
{!!Form::text('collector_id',null, ['class'=>'form-control','placeholder'=>'Ingrese el collector id '])!!}
{!!Form::text('transaction_id',null, ['class'=>'form-control','placeholder'=>'Ingrese el transaction id '])!!}
{!!Form::text('collection_id',null, ['class'=>'form-control','placeholder'=>'Ingrese el collection id '])!!}
{!!Form::select('collection_status',$collectionStatuses,null, ['class'=>'form-control','placeholder'=>'Seleccione un collection status'])!!}
{!!Form::text('reparacion_id',null, ['class'=>'form-control','placeholder'=>'Ingrese el reparacion id '])!!}
{!!Form::text('monto',null, ['class'=>'form-control','placeholder'=>'Ingrese el monto'])!!}
{!!Form::close()!!}
@foreach($mercadoPagoPayments as $mercadoPagoPayment) @endforeach
# Collector Id Transaction Id Collection Id Collection Status Source Reparación Pagado Fecha Creación
{!! link_to_route('mercadoPagoPayments.edit', $title = $mercadoPagoPayment->id, $parameters = $mercadoPagoPayment->id, $attributes = null)!!} {{$mercadoPagoPayment->collector_id}} {{$mercadoPagoPayment->transaction_id}} {{$mercadoPagoPayment->collection_id}} @if( $mercadoPagoPayment->collection_status == 'success' || $mercadoPagoPayment->collection_status == 'approved' )
{{$mercadoPagoPayment->collection_status}}
@elseif( $mercadoPagoPayment->collection_status == 'pending' )
{{$mercadoPagoPayment->collection_status}}
@elseif( $mercadoPagoPayment->collection_status == 'failure' || $mercadoPagoPayment->collection_status == 'null' )
{{$mercadoPagoPayment->collection_status}}
@else
{{$mercadoPagoPayment->collection_status}}
@endif
@if($mercadoPagoPayment->source_id) {{ $sources[$mercadoPagoPayment->source_id] }} @endif - {{$mercadoPagoPayment->created_at}}
# Collector Id Transaction Id Collection Id Collection Status Source Reparación Pagado Fecha Creación
@if( Request::path() =='mercadoPagoPayments' ) @include('pagination.default-limit-links', ['paginator' => $mercadoPagoPayments, 'filters' => '']) @else @include('pagination.default-limit-links', ['paginator' => $mercadoPagoPayments, 'filters' => '&texto='. $texto.'&collector_id='.$collector_id.'&transaction_id='.$transaction_id.'&collection_id='.$collection_id.'&collection_status='.$collection_status.'&reparacion_id='.$reparacion_id.'&monto='.$monto.'&fecha='.$fecha.'&fecha_desde='.$fecha_desde.'&fecha_hasta='.$fecha_hasta ]) @endif
@endsection