@extends('layouts.admin') @section('title', __('app.order_details') . ' - ' . $order->order_number) @section('content')
{{ $order->created_at->format('Y-m-d H:i') }}
| {{ __('app.product') }} | {{ __('app.sku') }} | {{ __('app.unit_price') }} | {{ __('app.quantity') }} | {{ __('app.total') }} |
|---|---|---|---|---|
| {{ $item->product_name }} | {{ $item->product_sku }} | {{ number_format($item->unit_price, 2) }} {{ __('app.jod') }} | {{ $item->quantity }} | {{ number_format($item->total, 2) }} {{ __('app.jod') }} |
| {{ __('app.total') }} | {{ number_format($order->total, 2) }} {{ __('app.jod') }} | |||