@livewire('dashboard.dashboard-filters')
@livewire('dashboard.dashboard-metrics')
@livewire('dashboard.customer-sales-by-department')
@livewire('dashboard.garments-due-chart')
@livewire('dashboard.unconfirmed-prices')
@php
$rtTeam = \App\Models\Team::find(1);
$isAdmin = $rtTeam && auth()->user()->hasTeamRole($rtTeam, 'admin');
@endphp
@if($isAdmin)
@livewire('dashboard.shipments-leaving-this-week')
@endif