| Apertura / Turno | Cajero | Monto Inicial | Ventas Sistema | Cuadre (Diferencia) | Detalles |
|---|---|---|---|---|---|
|
@if(is_null($sesion->fecha_cierre))
lock_open Turno Activo
@else
lock Cerrada
@endif
Abre: {{ \Carbon\Carbon::parse($sesion->fecha_apertura)->format('d M, h:i A') }}
@if($sesion->fecha_cierre)
Cierra: {{ \Carbon\Carbon::parse($sesion->fecha_cierre)->format('d M, h:i A') }}
@endif
|
{{-- Columna 2: Cajero y Caja --}}
{{ $sesion->cajero->nombre ?? 'N/A' }} {{ $sesion->cajero->apellido ?? '' }} {{ $sesion->caja->nombre ?? 'Caja Única' }} |
{{-- Columna 3: Monto Inicial --}}
${{ number_format($sesion->monto_inicial_usd, 2) }} | {{-- Columna 4: Ventas del Sistema --}}
${{ number_format($sesion->total_ventas_sistema_usd, 2) }} Bs. {{ number_format($sesion->total_ventas_sistema_ves, 2) }} |
{{-- Columna 5: Cuadre y Diferencia --}}
@if(is_null($sesion->fecha_cierre)) Esperando cierre... @else @if($sesion->diferencia_usd == 0) balance CUADRE EXACTO @elseif($sesion->diferencia_usd > 0) arrow_upward SOBRÓ ${{ number_format($sesion->diferencia_usd, 2) }} @else arrow_downward FALTÓ ${{ number_format(abs($sesion->diferencia_usd), 2) }} @endif @endif | {{-- Columna 6: Acciones --}}|
|
store
No hay historial de cajas |
|||||