الرصيد الافتتاحي
{{ number_format((float)$totals->opening_balance, 2) }}
مشتريات الفترة
{{ number_format((float)$totals->period_purchases, 2) }}
مدفوعات الفترة
{{ number_format((float)$totals->period_payments, 2) }}
الرصيد النهائي
{{ number_format((float)$totals->closing_balance, 2) }}
| التاريخ | النوع | رقم | المرجع | البيان | مدين | دائن | الرصيد |
|---|---|---|---|---|---|---|---|
| {{ \Carbon\Carbon::parse($from)->format('d-m-Y') }} | افتتاحي | - | - | الرصيد حتى ما قبل الفترة | - | - | {{ number_format((float)$totals->opening_balance, 2) }} |
| {{ \Carbon\Carbon::parse($r->date)->format('d-m-Y') }} | {{ $r->type_label }} | {{ $r->document_no }} | {{ $r->reference_no ?: '-' }} | {{ $r->description }} | {{ (float)$r->debit > 0 ? number_format((float)$r->debit, 2) : '-' }} | {{ (float)$r->credit > 0 ? number_format((float)$r->credit, 2) : '-' }} | {{ number_format((float)$r->balance, 2) }} |
| لا توجد حركات داخل الفترة | |||||||
| الرصيد النهائي | {{ number_format((float)$totals->period_purchases, 2) }} | {{ number_format((float)$totals->period_payments, 2) }} | {{ number_format((float)$totals->closing_balance, 2) }} | ||||