@extends(niche_shell_layout())
@section('title', niche_label('finance.dashboard', 'لوحة المحاسبة').' - '.config('app.name'))
@section('breadcrumb')
الرئيسية
›
المحاسبة
@endsection
@push('styles')
@endpush
@section('content')
{{-- شريط الأدوات: الترتيب من اليمين لليسار = تحديث - القيود اليومية - قيد يومي جديد، ومثبت على اليسار --}}
{{ niche_label('finance.dashboard', 'لوحة المحاسبة') }}
@php
$dashExpenseSupplierOpts = collect($expenseSuppliers ?? [])->map(fn ($s) => [
'value' => (string) $s->id,
'label' => (string) $s->localized_display_name,
])->all();
$dashExpenseSupplierSelected = isset($expenseSupplierId) && $expenseSupplierId !== '' && $expenseSupplierId !== null
? (string) $expenseSupplierId
: '';
@endphp
@if(!empty($expenseFiltersActive))
يتم احتساب عمود «المصروفات» في الرسم أدناه وملخص «استخدام الميزانية» من سندات المصروفات المطابقة للفلاتر فقط.
@endif
{{-- البطاقات العلوية الأربع --}}
{{ $unsettledCount ?? 0 }}
غير مسوى
{{ number_format($budgetVsActualPercent ?? 0, 1) }}%
الميزانية مقابل الفعلي
SAR {{ number_format($payableAgingTotal ?? 0, 2) }}
ذمم دائنة (2010)
SAR {{ number_format($receivableAgingTotal ?? 0, 2) }}
ذمم مدينة (1030)
{{-- استخدام الميزانية + الإيرادات والمصروفات الشهرية --}}
{{-- refresh-key: accounting-charts-20260312 --}}
{{-- استخدام الميزانية (رسم بياني دائري) --}}
{{-- الإيرادات والمصروفات الشهرية (آخر 6 أشهر) --}}
{{-- لوحات الملخص: الحسابات البنكية، تقادم الدائنين، تقادم المدينين، آخر القيود --}}
{{-- إجراءات سريعة --}}
{{-- أقسام المحاسبة (بطاقات سريعة) --}}
@push('scripts')
@endpush
@endsection