Back to Order

Fast, Reliable & Secure Delivery

INVOICE

Invoice #: {{ $order->tracking_code }}

Date: {{ $order->created_at->format('M d, Y') }}

Order Status
{{ ucfirst(str_replace('_', ' ', $order->status)) }}
Order Date: {{ $order->created_at->format('M d, Y - h:i A') }}
@if($order->picked_at)
Picked Up: {{ $order->picked_at->format('M d, Y - h:i A') }}
@endif @if($order->delivered_at)
Delivered: {{ $order->delivered_at->format('M d, Y - h:i A') }}
@endif
Payment Information
Payment Method: {{ $order->payment_method === 'cod' ? 'Cash on Delivery' : ucfirst($order->payment_method) }}
Payment Status: {{ ucfirst($order->payment_status) }}
@if($order->payment_reference)
Reference: {{ $order->payment_reference }}
@endif
Pickup Information
Name: {{ $order->sender_name }}
Phone: {{ $order->sender_phone }}
Address: {{ $order->sender_address }}
District: {{ $order->pickupDistrict->name }}, {{ $order->pickupDistrict->province }}
Delivery Information
Name: {{ $order->receiver_name }}
Phone: {{ $order->receiver_phone }}
Address: {{ $order->receiver_address }}
District: {{ $order->dropDistrict->name }}, {{ $order->dropDistrict->province }}
Package Details
Weight: {{ $order->weight }} kg
Size: {{ $order->size }}
Category: {{ $order->category }}
Vehicle: {{ ucfirst($order->vehicle_type) }}
Delivery Type: {{ ucfirst(str_replace('_', ' ', $order->delivery_type)) }}
@if($order->description)
Description: {{ $order->description }}
@endif
@if($order->assignedOffice)
Service Provider
Office: {{ $order->assignedOffice->name }}
Address: {{ $order->assignedOffice->address }}
Phone: {{ $order->assignedOffice->phone }}
@if($order->assignedAgent)
Agent: {{ $order->assignedAgent->user->name }}
Agent Code: {{ $order->assignedAgent->agent_code }}
Agent Phone: {{ $order->assignedAgent->phone }}
@endif
@endif
Pricing Details
Service Charges:
• Base delivery charge
• Weight-based pricing ({{ $order->weight }} kg)
• {{ ucfirst(str_replace('_', ' ', $order->delivery_type)) }} delivery
• {{ ucfirst($order->vehicle_type) }} transportation
PKR {{ number_format($order->estimated_price, 2) }}

Total Amount:
PKR {{ number_format($order->final_price, 2) }}
Terms & Conditions
  • This invoice is generated electronically and is valid without signature.
  • Package insurance is included up to PKR 5,000 for standard deliveries.
  • Delivery time estimates are approximate and may vary due to weather or traffic conditions.
  • For COD orders, payment must be collected from the receiver before delivery.
  • Any disputes must be reported within 24 hours of delivery.
  • Top Courier Service reserves the right to inspect packages for security purposes.
  • Prohibited items include hazardous materials, illegal substances, and perishable goods.
  • Customer support is available 24/7 at +92-300-1234567 or support@tcscourier.com
@if($order->notes)
Additional Notes

{{ $order->notes }}

@endif