@extends('header.header') @section('content')
{{ __('Support Driver') }}

@forelse($driver as $supportDriver) @empty @endforelse
{{ __('ID') }} {{ __('Name') }} {{ __('PhoneNumber') }} {{ __('Country') }} {{ __('Governorate') }} {{ __('Locality') }} {{ __('Sub Locality') }} {{ __('Neighborhood') }} {{ __('Supported') }} {{ __('Action') }}
{{ $supportDriver->id }} {{ $supportDriver->user->name }} {{ $supportDriver->user->phone_number }} {{ $supportDriver->country }} {{ $supportDriver->governorate }} {{ $supportDriver->locality }} {{ $supportDriver->sub_locality ?? null }} {{ $supportDriver->neighborhood ?? null }} {{ ($supportDriver->supported == 1 ? 'Supported' : 'Not Supported') ?? null }}
{{ __('No Driver Support Data') }}
@endsection @section('js-scripts') @endsection