@lang('modules.dashboard.topTables') (@lang('app.today'))

    @forelse ($orders as $item)
  • {{ $loop->index + 1 }}
    @include('livewire.dashboard.partials.table-area-badge', ['order' => $item])
    {{ currency_format($item->total_price, restaurant()->currency_id) }}
  • @empty
  • @lang('messages.noPaymentFound')

  • @endforelse