تاريخ التقرير: {{ date('Y-m-d H:i') }}
| # | التاريخ | البيان | اسم الموظف | المبلغ الكلي | المدفوع | المتبقي | النوع | الجهة |
|---|---|---|---|---|---|---|---|---|
| {{ $index + 1 }} | {{ $receipt->receipt_date->format('Y-m-d') }} | {{ Str::limit($receipt->description, 40) }} | {{ $receipt->employee_name }} | {{ number_format($receipt->total_amount, 2) }} | {{ number_format($receipt->paid_amount, 2) }} | {{ $receipt->remaining_amount > 0 ? number_format($receipt->remaining_amount, 2) : 'مكتمل' }} | {{ $receipt->receipt_type ?? '-' }} | {{ $receipt->receipt_source ?? '-' }} |