Mercado Pago
@foreach($mercadoPagoPayments as $mercadoPagoPayment) @endforeach
# Collector Id Transaction Id Collection Id Operation Type Collection Status Installments Action Action Date Created Refunded 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}} {{$mercadoPagoPayment->operation_type}} @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
{{$mercadoPagoPayment->installments}} {{$mercadoPagoPayment->action}} {{$mercadoPagoPayment->action_date_created}} {{$mercadoPagoPayment->refunded}} {{$mercadoPagoPayment->created_at}}
{!!Form::open(['route'=>['reparacionMercadoPago.destroy',$mercadoPagoPayment->pivot->id], 'method'=>'DELETE', 'style'=>'display:inline;' ]) !!} {!!Form::submit('Eliminar', ['class'=>'btn btn-danger btn-pill ml-2' ] ) !!} {!!Form::close()!!}
@include('_pagos.reparacionpago.modal.mercadoPagoModal')