{{-- resources/views/storefront/parcel.blade.php --}} @extends('storefront.layout') @section('title', trans_key('storefront.pageTitles.parcelDelivery').' - '.config('app.name', 'FreshMart')) @section('body_class', 'sf-no-bottom-nav') @section('content')
{{-- Hero --}}

Parcel Delivery

Pickup to doorstep โ€” reliable hyperlocal parcel delivery in minutes.

โšก Fast & reliable ยท Real-time tracking
{{-- Parcel Form --}}

Parcel details

Quote and order through the existing parcel API.

@if(session('parcel_status'))
โœ… {{ session('parcel_status') }}
@endif @if($errors->any())
Please fix the following:
    @foreach($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
@csrf {{-- Pickup --}} {{-- Delivery --}}
{{-- Quick quote banner (live estimate) --}}
๐Ÿ’ฐ Estimated fare โ€”
{{-- Sidebar --}}
{{-- Recent orders --}}

Recent parcel orders

{{ ($recentParcelOrders ?? collect())->count() }} recent

@if(($recentParcelOrders ?? collect())->count()) @foreach($recentParcelOrders as $parcelOrder)
{{ $parcelOrder->parcel_number }} {{ $parcelOrder->created_at->diffForHumans() }}
{{ \Illuminate\Support\Str::headline($parcelOrder->status) }} {{ \App\Support\StorefrontPresenter::money($parcelOrder->grand_total) }}
@endforeach @else

No parcel orders yet

Your parcel bookings will appear here.

@endif
{{-- How it works --}}

How it works

  • ๐Ÿ“ Enter pickup & delivery addresses
  • ๐Ÿ“ฆ Provide parcel details and weight
  • ๐Ÿš€ Get instant quote and book
  • ๐Ÿ“ก Track in real-time
{{-- Support / Trust --}}

โœ… Trusted delivery

100% insured ยท 24/7 support ยท Live tracking

{{-- Live fare estimation (client-side) --}} @endsection