رقم الفاتورة:
{{ $einvoice->invoice_number }}
نوع الفاتورة:
@switch($einvoice->invoice_type)
@case('standard')
فاتورة قياسية
@break
@case('simplifixed')
فاتورة مبسطة
@break
@case('debit_note')
إشعار مدين
@break
@case('credit_note')
إشعار دائن
@break
@default
{{ $einvoice->invoice_type }}
@endswitch
تاريخ الفاتورة:
{{ $einvoice->invoice_date->format('Y-m-d') }}
وقت الإصدار:
{{ $einvoice->issue_time->format('H:i:s') }}
تاريخ الاستحقاق:
{{ $einvoice->due_date ? $einvoice->due_date->format('Y-m-d') : 'غير محدد' }}
حالة الفاتورة:
@switch($einvoice->status)
@case('draft')
مسودة
@break
@case('generated')
تم الإنشاء
@break
@case('signed')
تم التوقيع
@break
@case('reported')
تم الإبلاغ
@break
@case('cleared')
تمت المقاصة
@break
@case('rejected')
مرفوضة
@break
@default
{{ $einvoice->status }}
@endswitch