{{ __('Dashboard') }}

@if(Auth::user()->role === 'admin' || Auth::user()->role === 'super_admin') @include('layouts.content.superadmin.index') @elseif(Auth::user()->role === 'patient') @include('layouts.content.patients.index') @elseif(Auth::user()->role === 'doctor') @include('layouts.content.doctors.index') @else

{{ __("Unauthorized access") }}

@endif