@lang('cashregister::app.approvalsSubtitle')
| @lang('cashregister::app.date') | @lang('cashregister::app.registerCol') | @lang('cashregister::app.cashierCol') | @lang('cashregister::app.expectedCol') | @lang('cashregister::app.countedCol') | @lang('cashregister::app.diffCol') | @lang('cashregister::app.noteCol') | @lang('cashregister::app.actions') |
|---|---|---|---|---|---|---|---|
| {{ $s->closed_at?->timezone(timezone())?->format('d M Y, h:i A') }} | {{ $s->register?->name ?? '—' }} | {{ $s->cashier?->name ?? '—' }} | @php $expectedAll = (float) ($s->opening_float ?? 0) + (float) ($s->total_payments ?? 0) + (float) ($s->cash_in_total ?? 0) - (float) ($s->change_given_total ?? 0) - (float) ($s->cash_out_total ?? 0) - (float) ($s->safe_drop_total ?? 0) - (float) ($s->refund_total ?? 0); $countedTotal = (float) ($s->counted_cash ?? 0); $diff = $countedTotal - $expectedAll; @endphp{{ currency_format($expectedAll, restaurant()->currency_id) }} | {{ currency_format($countedTotal, restaurant()->currency_id) }} | {{ $diff >= 0 ? '+' : '' }}{{ currency_format((float) $diff, restaurant()->currency_id) }} | {{ $s->closing_note }} |
|
| @lang('cashregister::app.noSessionsPending') | |||||||