@extends('admin.layouts.admin') @section('content')
{{ $order->notes ?: 'لا توجد ملاحظات' }}
| المنتج | الكمية | السعر | الإجمالي |
|---|---|---|---|
| {{ $item->product ? $item->product->name : 'منتج محذوف' }} | {{ $item->quantity }} | {{ number_format($item->price, 2) }} ج.م | {{ number_format($item->price * $item->quantity, 2) }} ج.م |