@lang('modules.dashboard.topDish') (@switch($selectedPeriod) @case('today') @lang('app.today') @break @case('last7days') @lang('app.last7Days') @break @case('last30days') @lang('app.last30Days') @break @case('alltime') @lang('app.allTime') @break @default @lang('app.today') @endswitch)

    @forelse ($menuItems as $item)
  • #{{ $loop->index+1 }} {{ $item->item_name }}
    {{ $item->item_name }}
    {{ $item->orders->sum('quantity') }} @lang('modules.order.qty')
    {{ currency_format($item->orders->sum('amount'), restaurant()->currency_id) }}
  • @empty
  • @lang('messages.noPaymentFound')

  • @endforelse