@extends('layouts.app') @section('title', __('Order Details') . ' - ' . $order->order_number) @section('content')
{{ __('Order Number') }}: {{ $order->order_number }}
{{ __('Date') }}: {{ $order->created_at->format('M d, Y H:i') }}
{{ __('Payment Method') }}: {{ ucfirst(str_replace('_', ' ', $order->payment_method)) }}
{{ __('Total') }}: {{ number_format($order->total_amount, 2) }} {{ __('SAR') }}
{{ __('Product') }} | {{ __('SKU') }} | {{ __('Quantity') }} | {{ __('Price') }} | {{ __('Total') }} |
---|---|---|---|---|
{{ $item->product_name }} | {{ $item->product_sku }} | {{ $item->quantity }} | {{ number_format($item->unit_price, 2) }} {{ __('SAR') }} | {{ number_format($item->total_price, 2) }} {{ __('SAR') }} |