صافي ضريبة المخرجات
{{ number_format((float)$netOutputVat, 2) }}
إجمالي ضريبة المدخلات
{{ number_format((float)$inputVat, 2) }}
{{ $vatStatus }}
{{ number_format((float)$vatDue, 2) }}
تفصيل الإقرار الضريبي
| البيان | عدد المستندات | قبل الضريبة | قيمة الضريبة | الإجمالي شامل الضريبة |
|---|---|---|---|---|
| {{ $r->label }} | {{ $r->count === null ? '-' : number_format((int)$r->count) }} | {{ $r->before_tax === null ? '-' : number_format((float)$r->before_tax, 2) }} | {{ $r->vat_amount === null ? '-' : number_format((float)$r->vat_amount, 2) }} | {{ $r->total_with_tax === null ? '-' : number_format((float)$r->total_with_tax, 2) }} |