{{ __('dashboard.items_sales_report') }}

{{ __('dashboard.best_selling_items_and_revenue_analysis') }}

{{-- Filters --}}
{{ __('dashboard.start_date') }}
{{ __('dashboard.end_date') }}
{{ __('dashboard.branch') }} @foreach($branches as $branch) @endforeach
{{ __('dashboard.category') }} @foreach($categories as $category) @endforeach
{{-- Table --}}
@forelse($items as $item) @empty @endforelse
Item Name Quantity Sold Total Revenue
{{ $item->item_name }} {{ $item->total_quantity }} {{ currency($item->total_revenue) }}
No items found.
{{ $items->links() }}