@extends('layouts.admin') @section('title', 'Cashier Shifts') @section('content') @php $currency = \App\Models\Hotel::query()->value('currency') ?? 'USD'; @endphp
Open Shift
@csrf
@forelse($shifts as $s) @if($s->status==='open')@endif @empty@endforelse
CashierOpenedClosedFloatClosingExpectedStatus
{{ $s->user?->name ?? '—' }} {{ $s->opened_at?->format('M j, H:i') }}{{ $s->closed_at?->format('M j, H:i') ?? '—' }} {{ $currency }} {{ number_format($s->opening_float, 2) }} {{ $s->closing_amount !== null ? $currency.' '.number_format($s->closing_amount, 2) : '—' }} {{ $s->expected_amount !== null ? $currency.' '.number_format($s->expected_amount, 2) : '—' }} @if($s->status==='open')@endif
@csrf
No cashier shifts
{{ $shifts->links() }}
@endsection