@include('partials.head')
{{-- ── MINI SIDEBAR (lg+) ─────────────────────────── --}}
{{-- Logo --}}
{{-- Nav icons --}}
@if(auth()->user()->isSuperAdmin())
@endif
{{-- Bottom: user initial + expand button --}}
{{ strtoupper(substr(auth()->user()->name, 0, 1)) }}
{{-- ── FULL SIDEBAR OVERLAY (lg+) ─────────────────── --}}
Platform
Dashboard
Sales
POS
Sales History
Customers
Reports
Pricing
Inventory
Categories
Companies
Products
Purchases
Transfers
@if(auth()->user()->isSuperAdmin())
Admin
Settings
@endif
{{-- User info at bottom --}}
{{ strtoupper(substr(auth()->user()->name, 0, 1)) }}
{{ auth()->user()->name }}
{{ ucfirst(auth()->user()->role) }}
@csrf
{{-- ── MOBILE: original flux sidebar ─────────────── --}}
{{ __('Dashboard') }}
{{ __('POS') }}
{{ __('Sales History') }}
{{ __('Customers') }}
{{ __('Report') }}
{{ __('Categories') }}
{{ __('Companies') }}
{{ __('Products') }}
{{ __('Purchases') }}
{{ __('Transfers') }}
@if(auth()->user()->isSuperAdmin())
{{ __('Settings') }}
@endif
{{-- Mobile header --}}
{{ auth()->user()->name }}
{{ auth()->user()->email }}
{{ __('Settings') }}
@csrf
{{ __('Log out') }}
{{-- Main content --}}
{{ $slot }}
@fluxScripts