{{-- table loader --}}
{{ __('admin.loading') }}
{{-- table loader --}} {{-- table content --}} @foreach ($drivers as $driver) @endforeach
{{ __('admin.image') }} {{ __('admin.name') }} {{ __('admin.company') }} {{ __('admin.request_type') }} {{ __('admin.action') }} {{ __('admin.control') }}
{{ $driver->name }} {{ $driver->company->name }} {{ __('admin.request_' . $driver->entityUpdateRequest->type) }} @if ($driver->entityUpdateRequest->type == 'update') @else @endif
{{-- table content --}} {{-- no data found div --}} @if ($drivers->count() == 0)
{{ __('admin.there_are_no_matches_matching') }}
@endif {{-- no data found div --}}
{{-- pagination links div --}} @if ($drivers->count() > 0 && $drivers instanceof \Illuminate\Pagination\AbstractPaginator)
{{ $drivers->links() }}
@endif {{-- pagination links div --}}