@extends('partials.layout') @section('title','Detalle del Cuadre de Caja') @section('subtitle','Resumen de lecturas por manguera') @section('back') ← Volver a la lista @endsection @section('content')
| Isla | Lado | Manguera | Combustible | Saldo inicial | Saldo final | Total |
|---|---|---|---|---|---|---|
| {{ $item->manguera->cara->estacion->nombre ?? 'N/A' }} | {{ $item->manguera->cara->nombre ?? 'N/A' }} | {{ $item->manguera->numero_manguera ?? 'N/A' }} | {{ $item->manguera->tipoCombustible->nombre ?? 'N/A' }} | {{ number_format((float)($item->saldo_inicial ?? 0), 3) }} | {{ number_format((float)($item->saldo_final ?? 0), 3) }} | {{ number_format((float)($item->total ?? 0), 2) }} |