@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 ?? '—' }} | ₹{{ number_format($s->expected_cash ?? 0, 2) }} | ₹{{ number_format($s->counted_cash ?? 0, 2) }} | @php $diff = ($s->counted_cash ?? 0) - ($s->expected_cash ?? 0); @endphp{{ $diff >= 0 ? '+' : '' }}₹{{ number_format($diff, 2) }} | {{ $s->closing_note }} |
|
| @lang('cashregister::app.noSessionsPending') | |||||||