@extends('admin.layouts.app') @section('title', 'Order Details') @section('content')
Order Number
{{ $order->order_number }}
Status
Payment Status
Payment Method
{{ ucfirst($order->payment_method) }}
Order Date
{{ $order->created_at->format('M d, Y H:i') }}
Name
{{ $order->shipping_name }}
{{ $order->shipping_email }}
Phone
{{ $order->shipping_phone }}
Shipping Address
{{ $order->shipping_address }}
Product | Variation | Price | Quantity | Total |
---|---|---|---|---|
{{ $item->product->name_en }}
|
{{ $item->variation->color_en }} / {{ $item->variation->size_en }}
|
${{ number_format($item->price, 2) }}
|
{{ $item->quantity }}
|
${{ number_format($item->total, 2) }}
|
Subtotal | ${{ number_format($order->subtotal, 2) }} | |||
Discount | -${{ number_format($order->discount, 2) }} | |||
Total | ${{ number_format($order->total, 2) }} |
{{ $order->notes }}