@extends('rental-company.layout.master')
@section('title', __('admin.drivers'))
@section('content')
| # |
{{ __('admin.name') }} |
{{ __('admin.phone') }} |
{{ __('admin.image') }} |
{{ __('admin.status') }} |
{{ __('admin.action') }} |
@foreach ($drivers as $index => $driver)
| {{ $drivers->firstItem() + $index }} |
{{ $driver->name }} |
({{ $driver->country_code }}) {{ $driver->phone }} |
|
{!! $driver->is_blocked
? "".__('admin.blocked').""
: "".__('admin.active')."" !!}
|
|
@endforeach
@push('scripts')
@endpush
@endsection