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

Listado de Envíos Mercado Pago

{!!Form::open(['url'=>'filtrarEnvioMercadoPago', 'method'=>'POST'])!!}
{!!Form::text('texto',null, ['class'=>'form-control','placeholder'=>'Ingrese el texto de su búsqueda '])!!}
{!!Form::close()!!}
@foreach($enviosMercadoPago as $envioMercadoPago) @endforeach
# Reparacion Id MP Payment Id Monto Transaction Id Collection Id Status Reintentos Fecha Creación Action Action Date Acción
{!! link_to_route('enviosMercadoPago.edit', $title = $envioMercadoPago->id, $parameters = $envioMercadoPago->id, $attributes = null)!!} {!! link_to_route('reparacion.edit', $title = $envioMercadoPago->reparacion_id, $parameters = $envioMercadoPago->reparacion_id, $attributes = null)!!} {!! link_to_route('mercadoPagoPayments.edit', $title = $envioMercadoPago->mercado_pago_payment_id, $parameters = $envioMercadoPago->mercado_pago_payment_id, $attributes = null)!!} ${{$envioMercadoPago->monto}} @if($envioMercadoPago->mercadoPagoPayment) {{$envioMercadoPago->mercadoPagoPayment->transaction_id}} @endif @if($envioMercadoPago->mercadoPagoPayment) {{$envioMercadoPago->mercadoPagoPayment->collecion_id}} @endif @if($envioMercadoPago->mercadoPagoPayment) @if( $envioMercadoPago->mercadoPagoPayment->collection_status == 'success' || $envioMercadoPago->mercadoPagoPayment->collection_status == 'approved' )
{{$envioMercadoPago->mercadoPagoPayment->collection_status}}
@elseif( $envioMercadoPago->mercadoPagoPayment->collection_status == 'pending' )
{{$envioMercadoPago->mercadoPagoPayment->collection_status}}
@elseif( $envioMercadoPago->mercadoPagoPayment->collection_status == 'failure' || $envioMercadoPago->mercadoPagoPayment->collection_status == 'null' )
{{$envioMercadoPago->mercadoPagoPayment->collection_status}}
@else
{{$envioMercadoPago->mercadoPagoPayment->collection_status}}
@endif @endif
{{$envioMercadoPago->reintentos}} {{$envioMercadoPago->created_at}} @if($envioMercadoPago->mercadoPagoPayment) {{$envioMercadoPago->mercadoPagoPayment->action}} @endif @if($envioMercadoPago->mercadoPagoPayment) {{$envioMercadoPago->mercadoPagoPayment->action_date_created}} @endif
# Reparacion Id MP Payment Id Monto Transaction Id Collection Id Status Reintentos Fecha Creación Action Action Date Acción
@if( Request::path() =='enviosMercadoPago' ) @include('pagination.default-limit-links', ['paginator' => $enviosMercadoPago, 'filters' => '']) @else @include('pagination.default-limit-links', ['paginator' => $enviosMercadoPago, 'filters' => '&texto='. $texto ]) @endif
@endsection