@extends('layouts.app') @section('titulo', 'Caja '.$caja->codigo) @section('subtitulo', $caja->estaAbierta() ? 'Turno en curso' : 'Turno cerrado') @php $sim = auth()->user()->empresa?->simbolo ?? 'S/'; $in = 'w-full rounded-xl border border-slate-200 bg-slate-50 px-4 py-2.5 text-sm outline-none focus:border-brand-400 focus:ring-4 focus:ring-brand-100 transition'; $ing = $caja->totalIngresos(); $egr = $caja->totalEgresos(); $esp = $caja->esperado(); @endphp @section('contenido')
{{ $valor }}
{{ $label }}
{{ $m->concepto }}
{{ $m->etiquetaMetodo() }} · {{ $m->created_at->format('d/m H:i') }} @if($m->referencia) · {{ $m->referencia }} @endif
{{ $m->tipo === 'ingreso' ? '+' : '−' }} {{ $sim }} {{ number_format($m->monto, 2) }}
Sin movimientos registrados.
@endforelseEsperado: {{ $sim }} {{ number_format($esp, 2) }}
{{ $caja->observacion }}
@endif