Order Received

Thank you! Your order has been received. Your parcel will be dispatched within 24 hours.

  • Order Number:
    {{ $order->id }}
  • Date:
    {{ $order->created_at->format('F d, Y H:i:s') }}
  • Total:
    PKR {{ number_format($order->base_amount) }}
  • Payment Method:
    {{ strtoupper(str_replace('_', ' ', $order->paymentMethod->title)) }}
  • Payment Status:
    {{ \App\Models\Order::STATUS[$order->status] }}
  • Name:
    {{ $order->customer_name }}
  • Phone:
    {{ $order->customer_phone }}
  • @if($order->customer_email)
  • Email:
    {{ $order->customer_email }}
  • @endif
  • Address:
    {{ $order->customer_address }}
  • City:
    {{ $order->city->name ?? 'N/A' }}

Pay cash at the time of delivery.

Order Details

Package 1 of 1 Package ID : PKG{{ 100000 + $order->id }} Shipped by: {{ $order->shipper->title ?? 'ARDropshipping' }}
@foreach ($order->items as $index => $item) @endforeach
S.No. PRODUCT SKU PRICE QTY TOTAL
{{ $index + 1 }} {{ \Illuminate\Support\Str::limit($item->productVariant->product->title, 50) }} {{ $item->productVariant->sku ?? '-' }} PKR {{ number_format($item->unit_amount) }} {{ $item->quantity }} PKR {{ number_format($item->unit_amount * $item->quantity) }}
Sub Total : PKR {{ number_format($order->base_amount) }}
Shipping Charges : PKR {{ number_format($order->shipping_charges ?? 0) }}
Profit : PKR {{ number_format($order->seller_profit_amount ?? 0) }}
Package Total : PKR {{ number_format($order->total_amount+$order->seller_profit_amount) }}

Connect With Us