Prime Hospital
Medical Center - Pasig INC.
@if(Auth::user()->role === 'admin' || Auth::user()->role === 'super_admin')
Admin Portal
@elseif(Auth::user()->role === 'patient')
Patient Portal
@elseif(Auth::user()->role === 'doctor')
Doctor Portal
@endif
{{--
--}}
@if(Auth::user()->role === 'admin' || Auth::user()->role === 'super_admin')
@include('layouts.sidepanellayout.admin')
@elseif(Auth::user()->role === 'patient')
@include('layouts.sidepanellayout.patients')
@elseif(Auth::user()->role === 'doctor')
@include('layouts.sidepanellayout.doctor')
@endif