@extends('storefront.layout') @section('title', 'Parcel Booked - '.config('app.name', 'FreshMart')) @section('body_class', 'sf-no-bottom-nav') @section('content') @include('services.parcel._flow-style') @php $parcel = $order->parcelOrder; $currency = \App\Support\StorefrontPresenter::currencySymbol(); @endphp
Success
OK

Your parcel is booked

Booking #{{ $order->order_number ?? $order->id }} is ready for driver assignment.

Receipt

Parcel{{ $parcel->content ?? $parcel->package_type ?? 'Parcel' }}
Pickup{{ data_get($parcel, 'pickup_address.city', 'Pickup') }}
Drop{{ data_get($parcel, 'drop_address.city', 'Drop') }}
Total{{ $currency }}{{ number_format((float) $order->total, 2) }}
@endsection