@extends('storefront.layout') @section('title', 'My Bookings - '.config('app.name', 'FreshMart')) @section('body_class', 'sf-no-bottom-nav') @section('content') @include('services.parcel._flow-style') @php $activeTab = request('tab', 'all'); $tabs = [ 'all' => 'All', 'ongoing' => 'Ongoing', 'completed' => 'Completed', 'cancelled' => 'Cancelled', ]; @endphp
Orders

My Bookings

Track active parcels and review completed deliveries.

@foreach($tabs as $key => $label) {{ $label }} @endforeach
@forelse($bookings as $booking) @include('services.parcel.components.parcel-card', ['order' => $booking]) @empty

No bookings yet

Send your first parcel and it will appear here.

Send Parcel
@endforelse @if(method_exists($bookings, 'links'))
{{ $bookings->withQueryString()->links() }}
@endif
@endsection