@extends('layout.app') @section('content')

Purchase Items

1 Order Placed
2 On Review
3 Delivered

Order# {{$order->order_number ?? ''}}[{{$order->order_status ?? ''}}]

Order Date {{ \Carbon\Carbon::parse($order->paid_at)->format('d-m-y') ?? '' }}
Print Order
Shipping Address
  • {{$order->differentShipping ? $order->differentShipping->name : $order->customer_name ?? '' }}
  • {{$order->differentShipping ? $order->differentShipping->address : $order->customer_address ?? ''}}
  • {{$order->differentShipping ? $order->differentShipping->phone : $order->customer_phone ?? '' }}
  • {{$order->customer_email ?? ''}}
Billing Address
  • {{$order->customer_name ?? ''}}
  • {{$order->customer_address ?? ''}}
  • {{$order->customer_phone ?? ''}}
  • {{$order->customer_email ?? ''}}
Payment Information
  • Payment Status : {{$order->payment_status ?? ''}}
  • Tax : {{$order->tax ?? '0.00'}}$
  • Paid Amount : {{$order->grand_total ?? '0.00'}}$
  • Payment Method: {{$order->payment_method ?? ''}}
Shipping Method

{{$order->shipping ?? 'AMERICAN SHIPPING'}}

Ordered Products:

@foreach($order->orderItems as $cart) @endforeach
Product Name Details Unit Price Total Price
  • Quantity: {{$cart->quantity ?? ''}}
{{$cart->price ?? ''}}$ {{$cart->subtotal ?? ''}}$
@endsection