{{-- Hero Section with Filters --}} @livewire('dashboard.dashboard-filters') {{-- Stats Grid --}} @livewire('dashboard.dashboard-metrics') {{-- Main Dashboard Grid --}}
{{-- Customer Sales Progress --}}
@livewire('dashboard.customer-sales-by-department')
{{-- Garments Due Chart --}}
@livewire('dashboard.garments-due-chart')
{{-- Unconfirmed Prices --}}
@livewire('dashboard.unconfirmed-prices')
{{-- Shipments Leaving This Week - Admin Only --}} @php $rtTeam = \App\Models\Team::find(1); $isAdmin = $rtTeam && auth()->user()->hasTeamRole($rtTeam, 'admin'); @endphp @if($isAdmin)
@livewire('dashboard.shipments-leaving-this-week')
@endif