{{-- sweet alert --}}
@if (auth()->check())
Dashboard
@if (auth()->user()->role === 'cashier')
Booking
@endif @if (auth()->user()->role === 'admin' || auth()->user()->role === 'cashier')
Settings
Categories
Products
Discounts
Delivery Fees
Tax Settings
@endif @if (auth()->user()->role === 'admin')
Purchase Management
Supplier Info
Purchase Info
Asset Management
Asset Category
Asset List
Manage Profile
Create New User
My Profile
Manage Profile
Reset Password
@endif
Reports
Sales Reports
Inventory Analysis
Summary Purchase
Details Purchase
Asset Report
Feedback
@endif
@csrf
Coffee POS
Orders @if(($orderPending ?? 0) > 0)
{{ $orderPending }}
@endif
Invoice
@if (auth()->user()->profile == null)
@else
@endif
{{ auth()->user()->name }}
Role: {{ auth()->user()->role }}
Profile
Reset Password
@csrf
Logout
@yield('content')
@if (session('alert')) @endif @yield('scripts')