@extends('layouts.app') @section('title', 'Cierre de Caja') @section('header', 'Cierre de Turno') @section('content') @php $moneda = $empresaGlobal->moneda ?? 'S/'; @endphp
{{ $turno->caja->nombre }} - {{ $turno->user->name }}
APERTURA
{{ $turno->fecha_apertura->format('d/m/Y H:i') }}
CIERRE
{{ $turno->fecha_cierre?->format('d/m/Y H:i') ?? 'Abierto' }}
CALCULADO
{{ $moneda }}{{ number_format($turno->monto_calculado, 2) }}
CONTADO
{{ $moneda }}{{ number_format($turno->monto_cierre, 2) }}
DIFERENCIA
{{ $moneda }}{{ number_format($turno->diferencia, 2) }}
{{ $turno->diferencia == 0 ? '✓ Caja cuadrada' : ($turno->diferencia > 0 ? 'Sobrante' : 'Faltante') }}