@extends('layouts.admin')
@section('title', 'Cashier Shifts')
@section('content')
@php $currency = \App\Models\Hotel::query()->value('currency') ?? 'USD'; @endphp
| Cashier | Opened | Closed | Float | Closing | Expected | Status | |
|---|---|---|---|---|---|---|---|
| {{ $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 | |
| No cashier shifts | |||||||