@extends('admin.layout') @section('title', 'Detalle de Caja #' . $caja->id) @section('content')
Abierta por: {{ $caja->usuario->name }}
Fecha Apertura: {{ $caja->fecha_apertura->format('d/m/Y H:i:s') }}
Monto Inicial: € {{ number_format($caja->monto_inicial, 2) }}
Cerrada por: {{ $caja->nombre_cajera ?? '-' }}
Fecha Cierre: {{ $caja->fecha_cierre ? $caja->fecha_cierre->format('d/m/Y H:i:s') : 'En curso' }}
Estado: @if($caja->estado == 'abierta') Abierta @else Cerrada @endif
| Concepto | Monto | Hora |
|---|---|---|
| {{ $gasto->concepto }} | € {{ number_format($gasto->monto, 2) }} | {{ $gasto->created_at->format('H:i') }} |
No se registraron gastos en esta caja.