@extends('storefront.layout') @section('title', 'Searching Driver - '.config('app.name', 'FreshMart')) @section('body_class', 'sf-no-bottom-nav') @section('content') @include('services.parcel._flow-style') @php $parcel = $order->parcelOrder; $subtitle = data_get($parcel, 'pickup_address.city', 'Pickup') . ' to ' . data_get($parcel, 'drop_address.city', 'Drop'); @endphp
Searching Driver

Finding nearby drivers

We are matching your parcel with the best available delivery partner.

B
Nearby drivers online ETA 2-5 min
@include('services.parcel.components.tracking-bottom-sheet', [ 'current' => $order->status === 'payment_pending' ? 'pending' : $order->status, 'title' => 'Booking #' . ($order->order_number ?? $order->id), 'subtitle' => $subtitle, ])
@endsection