{{-- resources/views/cashing-up/show.blade.php --}} @extends('layouts.app') @section('title', 'Shift ' . $shift->reference) @section('page_title', $shift->reference) @section('page_subtitle', 'Cash shift · ' . $shift->opened_at->format('d M Y')) @section('content') {{-- Action Bar --}}
No cash payments recorded during this shift
| Reference | Guest | Invoice | Amount | Time |
|---|---|---|---|---|
| {{ $payment->reference }} | {{ $payment->guest?->first_name }} {{ $payment->guest?->last_name ?? '—' }} | @if($payment->invoice) {{ $payment->invoice->invoice_number }} @else — @endif | {{ $payment->currency }} {{ number_format($payment->amount, 2) }} | {{ $payment->paid_at?->format('H:i') }} |
| Total Cash In | {{ $shift->currency }} {{ number_format($totalCashIn, 2) }} | |||
No manual transactions recorded
| Type | Description | Reference | Amount | Time |
|---|---|---|---|---|
| {{ $tc['label'] }} | {{ $txn->description }} | {{ $txn->reference ?? '—' }} | {{ in_array($txn->type, ['float_out','refund']) ? '-' : '+' }} {{ $shift->currency }} {{ number_format($txn->amount, 2) }} | {{ $txn->transacted_at?->format('H:i') }} |
{{ $shift->closing_notes }}