{{ config('app.name', 'ERP System') }}
| # | الصنف | الوحدة | الكمية | تكلفة الوحدة | الإجمالي | ملاحظات |
|---|---|---|---|---|---|---|
| {{ $index + 1 }} | {{ $item->item->name ?? 'غير محدد' }} | {{ $item->unit->name ?? 'غير محدد' }} | {{ number_format($item->quantity, 2) }} | {{ number_format($item->unit_cost, 2) }} | {{ number_format($item->total_cost, 2) }} | {{ $item->notes ?? '-' }} |
| لا توجد أصناف في هذا المستند | ||||||
| الإجمالي الكلي | {{ number_format($document->items->sum('total_cost'), 2) }} | |||||
{{ $document->notes }}
{{ $document->creator->name ?? '' }}
{{ $document->approver->name ?? '' }}