@include('partials.head') {{-- ── MINI SIDEBAR (lg+) ─────────────────────────── --}}
{{-- Logo --}} {{-- Nav icons --}} {{-- Bottom: user initial + expand button --}}
{{ strtoupper(substr(auth()->user()->name, 0, 1)) }}
{{-- ── FULL SIDEBAR OVERLAY (lg+) ─────────────────── --}}
Platform Dashboard
@if(auth()->user()->isSuperAdmin()) @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