@extends('admin.layouts.master') @section('title', 'تقرير المبيعات بالفترة') @section('page_title', 'تقرير المبيعات بالفترة') @section('breadcrumbs')
| الفترة | عدد الفواتير | إجمالي قبل الخصم | الخصم | الضريبة | الشحن | الصافي | المحصّل |
|---|---|---|---|---|---|---|---|
| {{ $r->period }} | {{ $r->invoice_count }} | {{ number_format((float) $r->subtotal, 2) }} | {{ number_format((float) $r->discount, 2) }} | {{ number_format((float) $r->tax, 2) }} | {{ number_format((float) $r->shipping, 2) }} | {{ number_format((float) $r->total, 2) }} | {{ number_format((float) $r->paid, 2) }} |
| المجموع | {{ $report['totals']['invoice_count'] }} | {{ number_format($report['totals']['subtotal'], 2) }} | {{ number_format($report['totals']['discount'], 2) }} | {{ number_format($report['totals']['tax'], 2) }} | {{ number_format($report['totals']['shipping'], 2) }} | {{ number_format($report['totals']['total'], 2) }} | {{ number_format($report['totals']['paid'], 2) }} |