@extends('admin.layouts.app') @section('title', 'Order Details') @section('content')

Order #{{ $order->id }}

Order Information

Order Number

{{ $order->order_number }}

Status

{{ $order->status->label() }}

Payment Status

{{ ucfirst($order->payment_status) }}

Payment Method

{{ ucfirst($order->payment_method) }}

Order Date

{{ $order->created_at->format('M d, Y H:i') }}

Customer Information

Name

{{ $order->shipping_name }}

Email

{{ $order->shipping_email }}

Phone

{{ $order->shipping_phone }}

Shipping Address

{{ $order->shipping_address }}

Order Items

@foreach($order->items as $item) @endforeach @if($order->discount > 0) @endif
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) }}
@if($order->notes)

Order Notes

{{ $order->notes }}

@endif
View Packaging Slip
@push('scripts') @endpush @endsection