@extends('layouts.app') @section('title', 'Parcel Details - ' . $parcel->tracking_id) @section('content')
← Back to Parcels

Parcel Details

Tracking ID: {{ $parcel->tracking_id }}

Current Status

{{ $parcel->status }}

Booking Date

{{ $parcel->booking_date->format('M d, Y') }}

Customer Information

Name
{{ $parcel->recipient_name }}
Contact
{{ $parcel->contact }}
City
{{ $parcel->city }}
Address
{{ $parcel->address }}

Order Information

COD Amount
PKR {{ number_format($parcel->cod_amount, 2) }}
Order Reference
{{ $parcel->order_reference_number ?? 'N/A' }}
Zone
{{ $parcel->zone }}
Items
{{ $parcel->items ?? 'N/A' }}
Weight
{{ $parcel->booking_weight ? $parcel->booking_weight . ' kg' : 'N/A' }}

Seller Information

Name
{{ $parcel->seller->name }}
Company
{{ $parcel->seller->company_name }}
Email
{{ $parcel->seller->email }}

Rider Information

@if($parcel->rider)
Name
{{ $parcel->rider->name }}
Phone
{{ $parcel->rider->phone }}
Zone
{{ $parcel->rider->zone }}
@else

No rider assigned yet

@endif
@if($parcel->notes)

Notes

{{ $parcel->notes }}

@endif @if(auth()->user()->role === 'seller')

Actions

Report Issue
@endif
@endsection