{{-- ✅ KPI --}}
ملخص الفرع
الأرقام خاصة بالمبيعات فقط وتشمل SALE، والضريبة من حقول Sync V2.
مبيعات اليوم شامل الضريبة
{{ number_format($totalToday,2) }}
قبل الضريبة{{ number_format($totalTodayBefore,2) }}
الضريبة{{ number_format($totalTodayTax,2) }}
مبيعات الشهر شامل الضريبة
{{ number_format($totalMonth,2) }}
قبل الضريبة{{ number_format($totalMonthBefore,2) }}
الضريبة{{ number_format($totalMonthTax,2) }}
مبيعات الفترة شامل الضريبة
{{ number_format($totalRange,2) }}
قبل الضريبة{{ number_format($totalRangeBefore,2) }}
الضريبة{{ number_format($totalRangeTax,2) }}
الإجمالي الكلي شامل الضريبة
{{ number_format($totalAll,2) }}
قبل الضريبة{{ number_format($totalAllBefore,2) }}
الضريبة{{ number_format($totalAllTax,2) }}
{{-- Filters --}}
{{-- Table --}}
الفواتير
عرض {{ $invoices->firstItem() ?? 0 }} - {{ $invoices->lastItem() ?? 0 }} من {{ $invoices->total() }} فاتورة
كل صفحة تعرض {{ $perPage }} فاتورة كحد أقصى
@forelse($invoices as $inv) @empty @endforelse
ID رقم الفاتورة تاريخ الفاتورة قبل الضريبة الضريبة الإجمالي شامل الضريبة طريقة الدفع الموظف
{{ $inv->id }} {{ $inv->bill_no }} {{ \Carbon\Carbon::parse($inv->bill_date)->format('d-m-Y H:i') }} {{ number_format((float)($inv->amount_before_tax ?? 0),2) }} {{ number_format((float)($inv->vat_amount ?? 0),2) }} {{ number_format((float)($inv->total_including_tax ?? $inv->grand_total ?? 0),2) }} {{ $inv->payment_mode ?? '-' }} {{ $inv->operator ?? '-' }}
لا توجد فواتير ضمن الفلتر المحدد
@if($invoices->hasPages())
الصفحة {{ $invoices->currentPage() }} من {{ $invoices->lastPage() }}
@endif