| {{ __('application.report.serial') }} | {{ __('application.report.place') }} | {{ __('application.report.vehicle_no') }} | {{ __('application.report.type') }} | {{ __('application.report.floor') }} | {{ __('application.report.slot') }} | {{ __('application.report.exit_floor') }} | {{ __('application.report.in_time') }} | {{ __('application.report.out_time') }} | {{ __('application.report.amount') }} ({{ __('application.report.currency') }}) | {{ __('application.report.paid') }} ({{ __('application.report.currency') }}) |
|---|---|---|---|---|---|---|---|---|---|---|
| {{ $i++ }} | {{ $parking->place->name }} | {{ $parking->vehicle_no }} | {{ $parking->category->type }} | {{ $parking->slot->floor->name ?? '' }} | {{ $parking->slot->slot_name ?? '' }} | {{ $parking->exit_floor->name ?? '' }} | {{ appDate($parking->in_time) }} | {{ $parking->out_time != null ? appDate($parking->out_time) : $parking->out_time }} | @php $total += $parking->amount; $totalPaid += $parking->paid; @endphp{{ round($parking->amount, 2) }} /= | {{ $parking->paid }} /= |
| {{ __('application.report.total') }} = | {{ $total }} /= | {{ $totalPaid }} /= | ||||||||