Order ID: | {{ $order->payment_reference }} |
---|---|
Order Date: | {{$order->created_at->format('D - d F, Y') }} |
Status: | {{ $order->order_status }} |
Name: | {{ $order['billingAddress']->first_name }} {{ $order['billingAddress']->last_name }} |
---|---|
Email: | {{ $order['billingAddress']->email }} |
Phone: | {{ $order['billingAddress']->contact }} |
Shipping Address: | {{ $order['billingAddress']->address }} {{ $order['billingAddress']->city }}, {{ $order['billingAddress']->state }}, {{ $order['billingAddress']->country }} {{ $order['billingAddress']->pincode }} |
# | Product | Style | Quantity | Price |
---|---|---|---|---|
{{ $loop->iteration }} | {{ $item->product->name }} | {{ $item->productDetails->style }} ({{ $item->productDetails->size }} carats) | {{ $item->quantity }} | ${{ number_format($item->quantity * $item->productDetails->price) }} |
Transaction ID: | {{ $order->payment->payment_id }} |
---|---|
Amount: | ${{ number_format($order->payment->amount) }} |
Payment Status: | @if($order->payment->payment_status=="[capture-received]") Paid @else Pending @endif |
Payment Method: | {{ $order->payment->payment_method }} |