@extends('layouts.app') @section('title', 'Order Confirmation') @section('content')

Order Confirmed!

Your courier booking has been successfully placed and is being processed.

Order Summary

{{ $order->tracking_code }}
Pickup Location

{{ $order->pickupDistrict->name }}

{{ $order->pickupDistrict->province }}
Drop Location

{{ $order->dropDistrict->name }}

{{ $order->dropDistrict->province }}
Package Details
Weight
{{ $order->weight }}kg
Size
{{ $order->size }}
Category
{{ $order->category }}
Vehicle
{{ ucfirst($order->vehicle_type) }}
Delivery Information
Delivery Type: {{ ucfirst(str_replace('_', ' ', $order->delivery_type)) }}
Payment Method: {{ $order->payment_method === 'cod' ? 'Cash on Delivery' : ucfirst($order->payment_method) }}
Payment Status: {{ ucfirst($order->payment_status) }}

Total Amount: PKR {{ number_format($order->final_price, 2) }}
Sender Information

{{ $order->sender_name }}

{{ $order->sender_phone }}

{{ $order->sender_address }}

Receiver Information

{{ $order->receiver_name }}

{{ $order->receiver_phone }}

{{ $order->receiver_address }}

@if($order->assignedOffice)
Assigned Office

{{ $order->assignedOffice->name }}

{{ $order->assignedOffice->address }}

{{ $order->assignedOffice->phone }}
@endif
What Happens Next?
Order Processing

Your order is being processed and will be assigned to our nearest courier agent.

Package Pickup

Our agent will contact you and pickup the package from your specified location.

Delivery

Your package will be delivered to the receiver with real-time tracking updates.

Need help? Contact our support team at +92-300-1234567 or support@tcscourier.com

@endsection @push('styles') @endpush @push('scripts') @endpush