@lang('modules.dashboard.topRestaurantsBySales')

@foreach($topRestaurants->take(5) as $index => $restaurant)
{{ $index + 1 }}

{{ $restaurant->name }}

{{ $restaurant->branches_count }} @lang('modules.dashboard.branches')

{{ global_currency_format($restaurant->total_sales ?? 0, global_setting()->default_currency_id) }}

@endforeach