@auth
โ Cafe POS
@can('pos.access')
POS
@endcan
๐ฝ๏ธ Menu & Kitchen
@can('inventory.manage')
๐ฆ Inventory
@endcan
๐งโ๐ผ Employees
@canany(['reports.view', 'accounting.manage', 'promotions.manage'])
๐ฐ Accounts
@endcan @can('users.manage')
โ๏ธ Admin
@endcan
My Work
Clock In/Out
My Shifts
Shift Swap Requests
My Overtime
Break Requests
Attendance Corrections
My Leave
Reconcile Till
Checklists
Temperature Logs
SOPs
Notice Board
Messages
Pulse Surveys
Salary Advance Requests
@if (auth()->user()->isMultiBranch())
@csrf
All Branches
@foreach (\App\Models\Branch::where('is_active', true)->get() as $b)
id ? 'selected' : '' }}>{{ $b->name }}
@endforeach
@endif @if (($notificationTotal ?? 0) > 0)
๐
{{ $notificationTotal }}
@foreach ($notificationItems as $item)
{{ $item['label'] }}
@endforeach
@endif
{{ auth()->user()->name }} ({{ auth()->user()->role->name ?? 'no role' }})
@csrf
Logout
@endauth @auth
@yield('title', 'Cafe POS')
@if (($notificationTotal ?? 0) > 0)
๐
{{ $notificationTotal }}
@foreach ($notificationItems as $item)
{{ $item['label'] }}
@endforeach
@endif
{{ substr(auth()->user()->name, 0, 1) }}
@endauth
@if (session('success'))
{{ session('success') }}
@endif @if ($errors->any())
@foreach ($errors->all() as $error)
{{ $error }}
@endforeach
@endif @yield('content')
@auth
@php $currentRoute = Route::currentRouteName(); @endphp
๐
Home
@can('pos.access')
๐งพ
Order
@endcan @can('pos.access')
+
@endcan @can('reports.view')
๐
Analytics
@endcan
โฐ
Manage
@endauth @yield('scripts') @auth @endauth