@lang('report.best_seller_dish_report')
@if (session('message'))
{{ session('message') }}
@endif
| @lang('report.ID') | @lang('report.Dish Name') | @lang('report.Total Quantity') | @lang('report.Price') | @lang('category.Actions') |
|---|---|---|---|---|
| {{ $index + 1 }} | {{ app()->getLocale() == 'en' ? $dish->name_en : $dish->name_ar }} | {{ $dish->total_quantity }} | {{ $dish->total_price_after_tax }} {{-- {{ $dish->currency_symbol }} --}} | @if (auth('admin')->user()->hasPermissionTo('detail report_best_seller_dishes', 'admin')) @lang('reports.details') @endif |