Filters Applied |
In Time - from : |
|
In Time - to : |
|
Out Time - from : |
|
Out Time - to : |
|
In User : |
|
Out User : |
|
Barcode : |
|
Vehicle Number : |
|
Vehicle Type : |
|
F8 : |
|
@if ($param1['f8_option'] != '2')
Manual Transaction - Pure F8
Sr. No. |
{{-- Ticket Number | --}}
Barcode |
Vehicle Number |
In Time |
In User |
In Gate | {{--In gate added--}}
Out Time |
Out User |
Out Gate | {{--Out gate added--}}
{{--Added CPS below--}}
CPS Time |
CPS User |
CPS Gate |
{{--End CPS--}}
Vehicle Type |
Reason |
Amount |
Payment Mode |
@if (count($data['pure_f8']) > 0)
@foreach($data['pure_f8'] as $each)
{{$i++}} |
{{--{{$each->barcode}} | --}}
{{$each->barcode}} |
{{$each->vehicle_number}} |
{{date("d-m-Y H:i:s",strtotime($each->in_time))}} |
{{$each->in_user_name}} |
{{$each->ingate}} | {{--In gate added--}}
{{$each->out_time != '0000-00-00 00:00:00' ? date("d-m-Y H:i:s",strtotime($each->out_time)) : ''}} |
{{$each->out_user_name}} |
{{$each->outgate}} | {{--Out gate added--}}
{{--Added CPS below--}}
@if(!empty($each->cps_out_time)){{date("d-m-Y H:i:s",strtotime($each->cps_out_time))}}@endif |
{{$each->cps_user_name}} |
{{$each->cpsgate}} |
{{--End CPS--}}
{{$each->type}} |
{{$each->reason}} |
{{$parking_amount}} |
{{$paymentmode}} |
@endforeach
@else
No records found |
@endif
@endif
@if ($param1['f8_option'] != '1')
Manual Transaction - ANPR F8
Sr. No. |
{{-- Ticket Number | --}}
Barcode |
Vehicle Number |
In Time |
In User |
In Gate | {{--In gate added--}}
Out Time |
Out User |
Out Gate | {{--Out gate added--}}
{{--Added CPS below--}}
CPS Time |
CPS User |
CPS Gate |
{{--End CPS--}}
Vehicle Type |
Reason |
Amount |
Payment Mode |
@if (count($data['anpr_f8']) > 0)
@foreach($data['anpr_f8'] as $each)
{{$i++}} |
{{--{{$each->barcode}} | --}}
{{$each->barcode}} |
{{$each->vehicle_number}} |
{{date("d-m-Y H:i:s",strtotime($each->in_time))}} |
{{$each->in_user_name}} |
{{$each->ingate}} | {{--In gate added--}}
{{$each->out_time != '0000-00-00 00:00:00' ? date("d-m-Y H:i:s",strtotime($each->out_time)) : ''}} |
{{$each->out_user_name}} |
{{$each->outgate}} | {{--Out gate added--}}
{{--Added CPS below--}}
@if(!empty($each->cps_out_time)){{date("d-m-Y H:i:s",strtotime($each->cps_out_time))}}@endif |
{{$each->cps_user_name}} |
{{$each->cpsgate}} |
{{--End CPS--}}
{{$each->type}} |
{{$each->reason}} |
{{$parking_amount}} |
{{$paymentmode}} |
@endforeach
@else
No records found |
@endif
@endif
@else