@section('page_css') @endsection
Download CSV
{{--

Validation Example

--}}
@if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if (Session::has('msg')) @endif
@if(isset($records) && !empty($records) && count($records)) @foreach($records as $index =>$singleData) @endforeach
Sl No. Client Name Phone Email Birthday
{{$index + $records->firstItem()}} {{$singleData['driver_name']}} @if($singleData['driver_phone'] != '') +{{$singleData['driver_isd_code']}}{{$singleData['driver_phone']}} @endif {{$singleData['driver_email']}} @if($singleData['dob'] != '') {{date("Y/m/d", strtotime($singleData['dob']))}} @endif
@endif
@if(isset($records) && count($records)) {{ $records->appends($_GET)->links('pagination::bootstrap-4') }} @endif
@section('page_scripts') @endsection