@if ($tillListDatalist) @foreach ($tillListDatalist as $tList) @php $open_timestamp = (int) ($tList['till_open_time'] ? $tList['till_open_time'] : $tList['till_open_time']); $close_timestamp = (int) ($tList['till_close_time'] ? $tList['till_close_time'] : $tList['till_close_time']); $timeTillOpen = \Carbon\Carbon::parse($open_timestamp)->timezone(Helper::usertimezone())->format("Y-m-d h:i A"); if ($close_timestamp > 0) { $timeTillClose = \Carbon\Carbon::parse($close_timestamp)->timezone(Helper::usertimezone())->format("Y-m-d h:i A"); } else { $timeTillClose = ''; } @endphp @if (Helper::checkAccess('till_list_log_close')) @endif @endforeach @else @endif
{{ __('lbl.post_station') }} {{ __('lbl.till_owner') }} {{ __('lbl.opened') }} {{ __('lbl.held') }} {{ __('lbl.closed') }} {{ __('lbl.held') }} {{ __('lbl.start_till_amount') }} {{ __('lbl.cash_pay') }} {{ __('lbl.exp_cash') }} {{ __('lbl.total_end_cash') }} {{ __('lbl.credit_transaction') }} {{ __('lbl.variance') }} {{ __('lbl.safe_drop') }}
{{ $tList['title'] }} {{$tList['first_name'] }} {{$timeTillOpen }} {{$tList['opened_held'] }} {{$timeTillClose }} {{$tList['closed_held'] }} {{storecurrency().number_format($tList['start_amount'], 2) }} {{storecurrency().number_format($tList['cash_transactions'], 2) }} {{storecurrency().rtrim($tList['expected_cash_In']) }} {{storecurrency().rtrim($tList['total_end_cash']) }} {{storecurrency().rtrim($tList['credit_transaction']) }} {{storecurrency().number_format($tList['variance'], 2) }} {{storecurrency().number_format($tList['safe_drop'], 2) }}
{{ __('lbl.no_record_found') }}