{{-- Home is always visible --}}
{{ __('Home') }}
@if(auth()->user()->canView('dashboard'))
{{ __('Dashboard') }}
@endif
@if(auth()->user()->canView('orders'))
{{ __('Orders') }}
@endif
@if(auth()->user()->canView('shipments'))
{{ __('Shipments') }}
@endif
@if(auth()->user()->canView('returns'))
{{ __('Returns') }}
@endif
@if(auth()->user()->canView('payments'))
{{ __('Payments') }}
@endif
{{-- Only show Users menu for Customers, not User sub-accounts --}}
@if(auth()->user()->isCustomer())
{{ __('Users') }}
@endif