| @lang('cashregister::app.openingFloat') |
{{ currency_format($reportData['opening_float'], restaurant()->currency_id) }} |
| @lang('cashregister::app.cashSales') |
{{ currency_format($reportData['cash_sales'], restaurant()->currency_id) }} |
@if(!empty($reportData['payment_method_totals']))
@foreach($reportData['payment_method_totals'] as $method => $amount)
@continue($method === 'cash')
| {{ __('modules.order.' . $method) !== 'modules.order.' . $method ? __('modules.order.' . $method) : \Illuminate\Support\Str::title(str_replace('_', ' ', (string) $method)) }} |
{{ currency_format((float) $amount, restaurant()->currency_id) }} |
@endforeach
@endif
| @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) }} |