• Main Menu
  • @if (auth()->user()->role == 'super_admin')
  • Users
  • {{ __('Content') }}
  • @else
  • Section Menu
  • Sections
      @php $protocols = \App\Models\Protocol::where('user_id', auth()->id())->orderBy('order', 'asc')->get(); @endphp @forelse ($protocols as $protocol)
    • {{ $protocol->name }}
    • @empty
    • Add protocols
    • @endforelse
  • Phonebook Sections
  • Phonebook
      @php $phonebooks = \App\Models\PhonebookType::where('user_id', auth()->id())->orderBy('name', 'asc')->get(); @endphp @forelse ($phonebooks as $phonebook)
    • {{ $phonebook->name }}
    • @empty
    • Add type
    • @endforelse
  • @php $count = \App\Models\Tag::where('user_id', auth()->id())->where('status', 'pending')->count(); @endphp Tags @if ($count > 0) {{ $count }} @endif
  • {{ __('Settings') }}
  • {{ __('App Password') }}
  • @endif