{{-- ✅ KPI --}}
ملخص الفرع
الفتره المحددة تتأثر بـ (من/إلى). اليوم/الشهر/الإجمالي ثابتة.
مبيعات اليوم
{{ number_format($totalToday,2) }}
ضريبة اليوم
{{ number_format($totalTodayTax,2) }}
مبيعات الشهر
{{ number_format($totalMonth,2) }}
ضريبة الشهر
{{ number_format($totalMonthTax,2) }}
مبيعات الفترة
{{ number_format($totalRange,2) }}
ضريبة الفترة
{{ number_format($totalRangeTax,2) }}
الإجمالي الكلي
{{ number_format($totalAll,2) }}
ضريبة الإجمالي
{{ number_format($totalAllTax,2) }}
{{-- Filters --}}
مسح
{{-- Table --}}
آخر 200 فاتورة
@foreach($invoices as $inv) @endforeach
ID رقم الفاتورة تاريخ الفاتورة الإجمالي طريقة الدفع الموظف
{{ $inv->id }} {{ $inv->bill_no }} {{ \Carbon\Carbon::parse($inv->bill_date)->format('Y-m-d H:i') }} {{ number_format($inv->grand_total,2) }} {{ $inv->payment_mode ?? '-' }} {{ $inv->operator ?? '-' }}