| ID | Branch | Cashier | Closed At | Action |
|---|---|---|---|---|
| #{{ $s->id }} | {{ $s->branch?->name ?? 'N/A' }} | @php $cashierName = $s->cashier?->name ?? optional(\App\Models\User::find($s->opened_by))->name; @endphp{{ $cashierName ?? 'N/A' }} | {{ optional($s->closed_at)->timezone(timezone())->format('d M Y, h:i A') }} |
@lang('cashregister::app.generated'): {{ $reportData['generated_at']->timezone(timezone())->format('d M Y, h:i A') }}
@lang('cashregister::app.branch'): {{ $reportData['session']->branch?->name ?? 'N/A' }}
@lang('cashregister::app.register'): {{ $reportData['session']->register->name ?? 'N/A' }}
@lang('cashregister::app.cashier'): {{ $reportData['session']->cashier->name ?? 'N/A' }}
@lang('cashregister::app.closed'): {{ $reportData['session']->closed_at->timezone(timezone())->format('d M Y, h:i A') }}
| @lang('cashregister::app.lineItem') | @lang('cashregister::app.amount') |
|---|---|
| @lang('cashregister::app.openingFloat') | {{ currency_format($reportData['opening_float'], restaurant()->currency_id) }} |
| @lang('cashregister::app.cashSales') | {{ currency_format($reportData['cash_sales'], restaurant()->currency_id) }} |
| @lang('cashregister::app.changeGiven') | -{{ currency_format($reportData['change_given'], restaurant()->currency_id) }} |
| @lang('cashregister::app.cashIn') | {{ currency_format($reportData['cash_in'], restaurant()->currency_id) }} |
| @lang('cashregister::app.cashOut') | -{{ currency_format($reportData['cash_out'], restaurant()->currency_id) }} |
| @lang('cashregister::app.safeDrops') | -{{ currency_format($reportData['safe_drops'], restaurant()->currency_id) }} |
| @lang('cashregister::app.refundsCash') | -{{ currency_format($reportData['refunds'], restaurant()->currency_id) }} |
| @lang('cashregister::app.expectedCash') | {{ currency_format($reportData['expected_cash'], restaurant()->currency_id) }} |
| @lang('cashregister::app.denomination') | @lang('cashregister::app.count') | @lang('cashregister::app.subtotal') |
|---|---|---|
| {{ currency_format((float) $row['value'], restaurant()->currency_id) }} | {{ $row['count'] }} | {{ currency_format((float) $row['subtotal'], restaurant()->currency_id) }} |
| @lang('cashregister::app.total') | — | {{ currency_format($reportData['counted_cash'], restaurant()->currency_id) }} |
@lang('cashregister::app.expected'): {{ currency_format($reportData['expected_cash'], restaurant()->currency_id) }} | @lang('cashregister::app.counted'): {{ currency_format($reportData['counted_cash'], restaurant()->currency_id) }}
{{ $reportData['discrepancy'] >= 0 ? '+' : '' }}{{ currency_format($reportData['discrepancy'], restaurant()->currency_id) }} @if($reportData['discrepancy'] > 0) (@lang('cashregister::app.over')) @elseif($reportData['discrepancy'] < 0) (@lang('cashregister::app.short')) @else (@lang('cashregister::app.exact')) @endif
{{ $reportData['session']->closing_reason }}
@lang('cashregister::app.status'): {{ $reportData['session']->status }}
@if($reportData['session']->approved_by)@lang('cashregister::app.approvedBy'): {{ $reportData['session']->closer->name ?? __('cashregister::app.manager') }}
@endif@lang('cashregister::app.noClosedSessionsFoundForSelectedCriteria')