@extends('layouts.app') @section('title') Feature Availability @endsection @section('content')

Access Denied!

Opps, the requested feature is not available within your hospital.
@if(getLoggedInUser()->hasRole('Admin')) Go To {{ __('messages.dashboard.dashboard') }} @elseif(getLoggedInUser()->hasRole('Doctor')) Go To {{ __('messages.doctors') }} @elseif(getLoggedInUser()->hasRole('Accountant')) Go To {{ __('messages.account_manager') }} @elseif(getLoggedInUser()->hasRole('Case Manager')) Go To {{ __('messages.doctors') }} @elseif(getLoggedInUser()->hasRole('Receptionist')) Go To {{ __('messages.appointments') }} @elseif(getLoggedInUser()->hasRole('Pharmacist')) Go To {{ __('messages.doctors') }} @elseif(getLoggedInUser()->hasRole('Lab Technician')) Go To {{ __('messages.doctors') }} @elseif(getLoggedInUser()->hasRole('Nurse')) Go To {{ __('messages.bed_management') }} @elseif(getLoggedInUser()->hasRole('Patient')) Go To {{ __('messages.patients_cases') }} @endif
@endsection