1
{{ __('Rider') }}
{{ __('Select rider to assign request') }}
2
{{ __('Location') }}
{{ __('Pickup & Drop-off location(s)') }}
3
{{ __('Service') }}
{{ __('Service to be requested') }}
4
{{ __('Looking') }}
{{ __('Searching for eligible driver') }}
@csrf
@foreach ($riders as $rider) @endforeach
{{ __('Name') }} {{ __('Mobile') }} {{ __('Status') }}
{{ $rider->user->name }}
{{ __('Registered on :type', ['type' => \Carbon\Carbon::parse($rider->created_at)->diffForHumans()]) }}
{{ $rider->user->mobile }}
{{ $rider->user->status?->label() }}