@section('page_css')
@include('washreport.partials._action_buttons')
@if(isset($records) && !empty($records) && count($records)) @foreach($records as $index =>$singleData) @endforeach
Sl No. CWO Name Client Name Client Email Client Phone Car Registration No. Body Type Car Wash Type Amount Date Time Car Wash Status Payment Type
{{$index + $records->firstItem()}} {{$singleData['cwo_name']}} {{$singleData['co_fname']}} {{$singleData['co_lname']}} {{$singleData['email']}} {{$singleData['co_phone']}} {{$singleData['car_registration_no']}} {{$singleData['body_type']}} {{$singleData['wash_name']}} {{$singleData['symbol']}}{{$singleData['amount']}} @if($singleData['date_washed'] != '') {{date("d-m-Y", strtotime($singleData['date_washed']))}} @endif @if($singleData['time_washed'] != '') {{date("h:i a", strtotime($singleData['time_washed']))}} @endif @if($singleData['status'] == 1) Completed @else Pending @endif {{$singleData['payment_details']}}
@endif
@if(isset($records) && count($records)) {{ $records->appends($_GET)->links('pagination::bootstrap-4') }} @endif
@section('page_scripts') {{-- --}} @endsection