{{-- Header --}}

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

{{ __('dashboard.welcome_back') }}, {{ auth()->user()->name }}

{{-- Stats Cards --}}
{{-- Total Sales --}}

{{ __('dashboard.stats.total_sales') }}

{{ currency($totalSalesToday) }}

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

{{-- Open Orders --}}

{{ __('dashboard.stats.open_orders') }}

{{ $openOrdersCount }}

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

{{-- Active Tables --}}

{{ __('dashboard.stats.active_tables') }}

{{ $activeTablesCount }}

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

{{-- Active Shifts --}}

{{ __('dashboard.stats.active_shifts') }}

{{ $activeShiftsCount }}

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

{{-- Sales Chart --}}

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

{{-- Placeholder for Chart --}}
{{-- Best Sellers --}}

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

    @forelse($bestSellers as $item)
  • {{ $loop->iteration }}
    {{ $item->name }}
    {{ $item->total_qty }} {{ __('dashboard.sold') }}
  • @empty
  • {{ __('dashboard.no_data') }}
  • @endforelse
{{-- Recent Activity --}}

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

@forelse($recentActivity as $activity) @empty @endforelse
{{ __('dashboard.description') }} {{ __('dashboard.status') }} {{ __('dashboard.amount') }} {{ __('dashboard.time') }}
{{ $activity['description'] }} {{ $activity['status'] }} {{ currency($activity['amount']) }} {{ $activity['time'] }}
{{ __('dashboard.no_recent_activity') }}
{{-- Low Stock Alerts --}} @livewire('dashboard.low-stock-alert')