@extends('layouts.admin') @section('title', 'Order Details') @section('content')
| Product | Price | Qty | Total |
|---|---|---|---|
|
@if($item->product->thumbnail)
|
PKR {{ number_format($item->price, 2) }} | {{ $item->quantity }} | PKR {{ number_format($item->price * $item->quantity, 2) }} |
| Grand Total | PKR {{ number_format($order->final_amount, 2) }} | ||
Name: {{ $order->customer_name }}
Email: {{ $order->customer_email }}
Phone: {{ $order->customer_phone }}
Address:
{{ $order->shipping_address }}
Notes:
{{ $order->notes }}
Payment Method: {{ strtoupper($order->payment_method) }}
Placed On: {{ $order->created_at->format('M d, Y H:i') }}