@extends('template.layoutAdmin') @section('style') @endsection @section('title') {{ trans('pagos.detallePagosOnline') }} @endsection @section('cabecera')

{{ trans('pagos.regresar') }}

{{ trans('pagos.numeroReferencia') }} {{$data->id}}

@endsection @section('contenido')
@if(Session::has('message')) @endif @if(Session::has('message_error')) @endif

{{ trans('pagos.datosPago') }}

{{$data->status != "DECLINED" ? "APROBADO":"DECLINADO"}}
{{ trans('pagos.referenciaFactura') }}
# {{$data->reference}}
{{ trans('pagos.metodoPago') }}
{{$data->payment_method_type}}
{{ trans('pagos.pesoCantidad') }}
{{$data->currency}} - $ {{substr("".$data->amount_in_cents, 0, -2)}}

{{ trans('pagos.fechaRealizacion') }}
{{$data->created_at}}
{{ trans('pagos.respuestaPago') }}
{{$data->status_message}}

@endsection @section('js') @endsection