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

Listado de Reparaciones Pago

{{ csrf_field() }}
@foreach($reparacionesPago as $reparacionPago) @endforeach
# Reparac Tipo Presup Servicios Extras Total Gateway Reintentos Fecha Creación
{!! link_to_route('reparacionPago.edit', $title = $reparacionPago->id, $parameters = $reparacionPago->id, $attributes = null)!!} {!! link_to_route('reparacion.edit', $title = $reparacionPago->reparacion_id, $parameters = $reparacionPago->reparacion_id, $attributes = null)!!} @if($reparacionPago->tipo_pago_presupuesto_id && intval($reparacionPago->tipo_pago_presupuesto_id)) {{-- {{ $tipos_pago_presupuesto[intval($reparacionPago->tipo_pago_presupuesto_id)] }} --}} @endif ${{ number_format($reparacionPago->monto_presupuesto, 2, ',', '.') }}
Fee: ${{ number_format($reparacionPago->fee_presupuesto, 2, ',', '.') }}
${{ number_format($reparacionPago->monto_servicios_extras, 2, ',', '.') }}
Fee: ${{ number_format($reparacionPago->fee_servicios_extras, 2, ',', '.') }}
${{ number_format($reparacionPago->monto_total, 2, ',', '.') }}
Fee: ${{ number_format($reparacionPago->fee_total, 2, ',', '.') }}
{{$reparacionPago->tipo_pago_presupuesto_id}} {{$reparacionPago->reintentos}} {{$reparacionPago->created_at}}
# Reparac Tipo Presup Servicios Extras Total Reintentos Fecha Creación
@if( Request::path() =='reparacionPago' ) @include('pagination.default-limit-links', ['paginator' => $reparacionesPago, 'filters' => '' ]) @else @include('pagination.default-limit-links', ['paginator' => $reparacionesPago, 'filters' => '&texto='.$texto]) @endif
@endsection