{{ $period->name }}
{{ $period->fiscalYear->name }}
{{ $period->start_date->format('Y-m-d') }}
{{ $period->end_date->format('Y-m-d') }}
@switch($period->status) @case('open') {{ __('مفتوحة') }} @break @case('closed') {{ __('مغلقة') }} @break @default {{ $period->status }} @endswitch
{{ $journalEntries->count() }}
{{ $period->notes ?: __('لا توجد ملاحظات') }}
| {{ __('رقم القيد') }} | {{ __('التاريخ') }} | {{ __('الوصف') }} | {{ __('إجمالي المدين') }} | {{ __('إجمالي الدائن') }} | {{ __('الحالة') }} | {{ __('الإجراءات') }} |
|---|---|---|---|---|---|---|
| {{ $entry->entry_number }} | {{ $entry->entry_date->format('Y-m-d') }} | {{ $entry->description }} | {{ number_format($entry->total_debit, 2) }} | {{ number_format($entry->total_credit, 2) }} | @switch($entry->status) @case('draft') {{ __('مسودة') }} @break @case('posted') {{ __('مرحل') }} @break @default {{ $entry->status }} @endswitch | |
| {{ __('لا توجد قيود محاسبية مضافة لهذه الفترة') }} | ||||||