@lang('cashregister::app.generatedOn')
{{ $reportData['generated_at']->timezone(timezone())->format('Y-m-d H:i') }}
@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.openingFloat')
{{ currency_format($reportData['opening_float'], restaurant()->currency_id) }}
@lang('cashregister::app.cashSales')
{{ currency_format($reportData['cash_sales'], 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.refunds')
{{ currency_format($reportData['refunds'], restaurant()->currency_id) }}