{{ __('Facturaciones') }}
@foreach ($facturaciones ?? [] as $item) @endforeach
Fecha Factura Cliente Equipo alquilado Periodo de Alquiler IMPORTE FC. PAGO OBSERVACIÓN ESTADO
{{formatoFecha($item->fecha_facturacion??null)}} {{$item->cliente->nombre?? null}} {{$item->inventario->nombre ?? null}} {{formatoFecha($item->alquiler->fecha_inicio?? null)}} {{formatoFecha($item->alquiler->fecha_fin??null)}} ${{number_format($item->importe,2,'.',',')}} @if ($item->tieneFacturaAdjuntada) @endif @if ($item->tienePagoAdjunto) @endif {{$item->pago_observacion??$item->factura_observacion??null}} $item->estaFacturado && !$item->estaPagado, 'text-danger' => !$item->estaFacturado && !$item->estaPagado, 'text-success' => $item->estaPagado, ])> {{ $item->estado }}
@if ($repuestos??null) {{ $repuestos?->links() }} @endif