@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')
Fecha: {{ $fecha }}
Turno: {{ $items->first()->turno->turnos ?? 'N/A' }}
Usuario: {{ trim(($items->first()->usuario->nombres ?? '') . ' ' . ($items->first()->usuario->apellidos ?? '') . ' ' . ($items->first()->usuario->usuario ?? '')) }}
@foreach($items as $item) @endforeach
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) }}
@endsection