@auth @php $u = auth()->user(); @endphp {{-- Mobile top bar with sidebar toggle --}}
{{ config('app.name') }}
{{ config('app.name') }}
{{ $u->roleLabel() }}
Dashboard
@if($u->canManagePatients())
Patient Management
Patients
Add Patient
Tests
Patient Reports
Fee Report
@endif @if($u->canManageInventory())
Ingredient Inventory
Ingredients
Categories
Suppliers / Supplier Entries
Ingredient Usage
Ingredient Reports
Inventory Report
Products (POS)
POS Sale Screen
Products
Product Categories
Sales / Receipts
Product Reports
@endif
{{ $u->name }}
Profile
@csrf
Logout
@yield('title', 'Dashboard')
@yield('actions')
@include('partials.flash') @yield('content')
@else @yield('content') @endauth