@extends('layouts.app') @section('titulo', 'Caja / Arqueo') @section('subtitulo', 'Apertura, movimientos y cierre de caja') @php $sim = auth()->user()->empresa?->simbolo ?? 'S/'; @endphp @section('contenido') @if ($abierta) {{-- Caja abierta --}}
Abierta el {{ $abierta->fecha_apertura->format('d/m/Y H:i') }} @if($abierta->responsable) por {{ $abierta->responsable->name }} @endif
{{ $label }}
{{ $valor }}
No hay una caja abierta. Registra el monto inicial para comenzar el turno.
@if ($errors->any())| Código | Responsable | Cierre | Esperado | Contado | Diferencia | |
|---|---|---|---|---|---|---|
| {{ $c->codigo }} | {{ $c->responsable?->name ?? '—' }} | {{ $c->fecha_cierre?->format('d/m/Y H:i') ?? '—' }} | {{ $sim }} {{ number_format($c->monto_esperado, 2) }} | {{ $sim }} {{ number_format($c->monto_final, 2) }} | {{ $sim }} {{ number_format($c->diferencia, 2) }} | Ver |
| Aún no hay turnos cerrados. | ||||||