mirror of
https://gitlab.com/signalytic/client-external/streamline/streamline-emr.git
synced 2026-09-12 11:11:31 +00:00
1172 lines
75 KiB
PHP
Executable File
1172 lines
75 KiB
PHP
Executable File
@extends('layouts.main')
|
|
|
|
@section('content')
|
|
<div class="row bg-title">
|
|
<div class="col-lg-3 col-md-4 col-sm-4 col-xs-12">
|
|
<h4 class="page-title">{{ __('clinical_data.clinical_data') }}</h4>
|
|
</div>
|
|
<div class="col-lg-9 col-sm-8 col-md-8 col-xs-12">
|
|
<ol class="breadcrumb">
|
|
<li><a href="{{ route('home') }}">{{ __('clinical_data.dashboard') }}</a></li>
|
|
<li><a class="active"> {{ __('clinical_data.clinical_data') }}</a></li>
|
|
</ol>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="white-box">
|
|
<div class="row">
|
|
@if(Auth::user()->can('drug-form-create') || Auth::user()->can('drug-form-list') || Auth::user()->can('drug-form-delete'))
|
|
<div class="col-md-4">
|
|
<h3 class="box-title">{{ __('clinical_data.title_drug_forms') }}</h3>
|
|
<ul class="feeds">
|
|
@if( Auth::user()->can('drug-form-create'))
|
|
<a href="{{ route('drug_forms.create') }}">
|
|
<li>
|
|
<div class="bg-success"><i class="fa fa-plus-circle text-white"></i></div> {{ __('clinical_data.add_drug_forms') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
@if( Auth::user()->can('drug-form-list'))
|
|
<a href="{{ route('drug_forms.index') }}">
|
|
<li>
|
|
<div class="bg-info"><i class="fa fa-eye text-white"></i></div> {{ __('clinical_data.view_drug_forms') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
@if( Auth::user()->can('drug-form-delete'))
|
|
<a href="{{ route('drug_forms.inactive') }}">
|
|
<li>
|
|
<div class="bg-danger"><i class="fa fa-eye-slash text-white"></i></div> {{ __('clinical_data.inactive_drug_forms') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
</ul>
|
|
</div>
|
|
@endif
|
|
|
|
@if(Auth::user()->can('drug-unit-create') || Auth::user()->can('drug-unit-list') || Auth::user()->can('drug-unit-delete'))
|
|
<div class="col-md-4">
|
|
<h3 class="box-title">{{ __('clinical_data.title_drug_units') }}</h3>
|
|
<ul class="feeds">
|
|
@if( Auth::user()->can('drug-unit-create'))
|
|
<a href="{{ route('drug_units.create') }}">
|
|
<li>
|
|
<div class="bg-success"><i class="fa fa-plus-circle text-white"></i></div> {{ __('clinical_data.add_drug_units') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
@if( Auth::user()->can('drug-unit-list'))
|
|
<a href="{{ route('drug_units.index') }}">
|
|
<li>
|
|
<div class="bg-info"><i class="fa fa-eye text-white"></i></div> {{ __('clinical_data.view_drug_units') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
@if( Auth::user()->can('drug-unit-delete'))
|
|
<a href="{{ route('drug_units.inactive') }}">
|
|
<li>
|
|
<div class="bg-danger"><i class="fa fa-eye-slash text-white"></i></div> {{ __('clinical_data.inactive_drug_units') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
</ul>
|
|
</div>
|
|
@endif
|
|
|
|
@if(Auth::user()->can('drug-category-create') || Auth::user()->can('drug-category-list') || Auth::user()->can('drug-category-delete'))
|
|
<div class="col-md-4">
|
|
<h3 class="box-title">{{ __('clinical_data.title_drug_categories') }}</h3>
|
|
<ul class="feeds">
|
|
@if( Auth::user()->can('drug-category-create'))
|
|
<a href="{{ route('drug_categories.create') }}">
|
|
<li>
|
|
<div class="bg-success"><i class="fa fa-plus-circle text-white"></i></div> {{ __('clinical_data.add_drug_categories') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
@if( Auth::user()->can('drug-category-list'))
|
|
<a href="{{ route('drug_categories.index') }}">
|
|
<li>
|
|
<div class="bg-info"><i class="fa fa-eye text-white"></i></div> {{ __('clinical_data.view_drug_categories') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
@if( Auth::user()->can('drug-category-delete'))
|
|
<a href="{{ route('drug_categories.inactive') }}">
|
|
<li>
|
|
<div class="bg-danger"><i class="fa fa-eye-slash text-white"></i></div> {{ __('clinical_data.inactive_drug_categories') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
</ul>
|
|
</div>
|
|
@endif
|
|
</div>
|
|
<br>
|
|
<div class="row">
|
|
@if(Auth::user()->can('symptom-create') || Auth::user()->can('symptom-list') || Auth::user()->can('symptom-delete'))
|
|
<div class="col-md-4">
|
|
<h3 class="box-title">{{ __('clinical_data.title_symptoms') }}</h3>
|
|
<ul class="feeds">
|
|
@if( Auth::user()->can('symptom-create'))
|
|
<a href="{{ route('symptoms.create') }}">
|
|
<li>
|
|
<div class="bg-success"><i class="fa fa-plus-circle text-white"></i></div> {{ __('clinical_data.add_symptoms') }} <i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
@if( Auth::user()->can('symptom-list'))
|
|
<a href="{{ route('symptoms.index') }}">
|
|
<li>
|
|
<div class="bg-info"><i class="fa fa-eye text-white"></i></div> {{ __('clinical_data.view_symptoms') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
@if( Auth::user()->can('symptom-edit'))
|
|
<a href="{{ route('symptoms.edit.all') }}">
|
|
<li>
|
|
<div class="bg-warning"><i class="fa fa-pencil text-white"></i></div> {{ __('clinical_data.bulk_edit_symptoms') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
@if( Auth::user()->can('symptom-delete'))
|
|
<a href="{{ route('symptoms.inactive') }}">
|
|
<li>
|
|
<div class="bg-danger"><i class="fa fa-eye-slash text-white"></i></div> {{ __('clinical_data.inactive_symptoms') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
</ul>
|
|
</div>
|
|
@endif
|
|
|
|
@if(Auth::user()->can('diagnosis-create') || Auth::user()->can('diagnosis-list') || Auth::user()->can('diagnosis-delete'))
|
|
<div class="col-md-4">
|
|
<h3 class="box-title">{{ __('clinical_data.title_diagnoses') }}</h3>
|
|
<ul class="feeds">
|
|
@if( Auth::user()->can('diagnosis-create'))
|
|
<a href="{{ route('diagnoses.create') }}">
|
|
<li>
|
|
<div class="bg-success"><i class="fa fa-plus-circle text-white"></i></div> {{ __('clinical_data.add_diagnoses') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
@if( Auth::user()->can('diagnosis-list'))
|
|
<a href="{{ route('diagnoses.index') }}">
|
|
<li>
|
|
<div class="bg-info"><i class="fa fa-eye text-white"></i></div> {{ __('clinical_data.view_diagnoses') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
@if( Auth::user()->can('diagnosis-edit'))
|
|
<a href="{{ route('diagnoses.edit.all') }}">
|
|
<li>
|
|
<div class="bg-warning"><i class="fa fa-pencil text-white"></i></div> {{ __('clinical_data.bulk_edit_diagnoses') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
@if( Auth::user()->can('diagnosis-delete'))
|
|
<a href="{{ route('diagnoses.inactive') }}">
|
|
<li>
|
|
<div class="bg-danger"><i class="fa fa-eye-slash text-white"></i></div> {{ __('clinical_data.inactive_diagnoses') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
</ul>
|
|
</div>
|
|
@endif
|
|
|
|
@if(Module::has('Investigations') && Module::isEnabled('Investigations') && (Auth::user()->can('investigations-create') || Auth::user()->can('investigations-list') || Auth::user()->can('investigations-delete')))
|
|
<div class="col-md-4">
|
|
<h3 class="box-title">{{ __('clinical_data.title_investigations') }}</h3>
|
|
<ul class="feeds">
|
|
@if( Auth::user()->can('investigations-create'))
|
|
<a href="{{ route('investigations.create') }}">
|
|
<li>
|
|
<div class="bg-success"><i class="fa fa-plus-circle text-white"></i></div> {{ __('clinical_data.add_investigations') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
@if( Auth::user()->can('investigations-list'))
|
|
<a href="{{ route('investigations.index') }}">
|
|
<li>
|
|
<div class="bg-info"><i class="fa fa-eye text-white"></i></div> {{ __('clinical_data.view_investigations') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
@if( Auth::user()->can('investigations-edit'))
|
|
<a href="{{ route('investigations.edit.all') }}">
|
|
<li>
|
|
<div class="bg-warning"><i class="fa fa-pencil text-white"></i></div> {{ __('clinical_data.bulk_edit_investigations') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
@if( Auth::user()->can('investigations-delete'))
|
|
<a href="{{ route('investigations.inactive') }}">
|
|
<li>
|
|
<div class="bg-danger"><i class="fa fa-eye-slash text-white"></i></div> {{ __('clinical_data.inactive_investigations') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
</ul>
|
|
</div>
|
|
@endif
|
|
</div>
|
|
<br>
|
|
<div class="row">
|
|
@if(Module::has('WardManagement') && Module::isEnabled('WardManagement') && (Auth::user()->can('ward-create') || Auth::user()->can('ward-list') || Auth::user()->can('ward-delete')))
|
|
<div class="col-md-4">
|
|
<h3 class="box-title">{{ __('clinical_data.title_wards') }}</h3>
|
|
<ul class="feeds">
|
|
@if( Auth::user()->can('ward-create'))
|
|
<a href="{{ route('wards.create') }}">
|
|
<li>
|
|
<div class="bg-success"><i class="fa fa-plus-circle text-white"></i></div> {{ __('clinical_data.add_wards') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
@if( Auth::user()->can('ward-list'))
|
|
<a href="{{ route('wards.index') }}">
|
|
<li>
|
|
<div class="bg-info"><i class="fa fa-eye text-white"></i></div> {{ __('clinical_data.view_wards') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
@if( Auth::user()->can('ward-delete'))
|
|
<a href="{{ route('wards.inactive') }}">
|
|
<li>
|
|
<div class="bg-danger"><i class="fa fa-eye-slash text-white"></i></div> {{ __('clinical_data.inactive_wards') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
</ul>
|
|
</div>
|
|
@endif
|
|
|
|
@if(Auth::user()->can('clinic-create') || Auth::user()->can('clinic-list') || Auth::user()->can('clinic-delete'))
|
|
<div class="col-md-4">
|
|
<h3 class="box-title">{{ __('clinical_data.title_clinics') }}</h3>
|
|
<ul class="feeds">
|
|
@if( Auth::user()->can('clinic-create'))
|
|
<a href="{{ route('clinics.create') }}">
|
|
<li>
|
|
<div class="bg-success"><i class="fa fa-plus-circle text-white"></i></div> {{ __('clinical_data.add_clinics') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
@if( Auth::user()->can('clinic-list'))
|
|
<a href="{{ route('clinics.index') }}">
|
|
<li>
|
|
<div class="bg-info"><i class="fa fa-eye text-white"></i></div> {{ __('clinical_data.view_clinics') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
@if( Auth::user()->can('clinic-delete'))
|
|
<a href="{{ route('clinics.inactive') }}">
|
|
<li>
|
|
<div class="bg-danger"><i class="fa fa-eye-slash text-white"></i></div> {{ __('clinical_data.inactive_clinics') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
</ul>
|
|
</div>
|
|
@endif
|
|
|
|
@if(Auth::user()->can('procedure-create') || Auth::user()->can('procedure-list') || Auth::user()->can('procedure-delete'))
|
|
<div class="col-md-4">
|
|
<h3 class="box-title">Procedures</h3>
|
|
<ul class="feeds">
|
|
@if( Auth::user()->can('procedure-create'))
|
|
<a href="{{ route('procedures.create') }}">
|
|
<li>
|
|
<div class="bg-success"><i class="fa fa-plus-circle text-white"></i></div> {{ __('clinical_data.add_procedures') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
@if( Auth::user()->can('procedure-list'))
|
|
<a href="{{ route('procedures.index') }}">
|
|
<li>
|
|
<div class="bg-info"><i class="fa fa-eye text-white"></i></div> {{ __('clinical_data.view_procedures') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
@if( Auth::user()->can('procedure-delete'))
|
|
<a href="{{ route('procedures.inactive') }}">
|
|
<li>
|
|
<div class="bg-danger"><i class="fa fa-eye-slash text-white"></i></div> {{ __('clinical_data.inactive_procedures') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
</ul>
|
|
</div>
|
|
@endif
|
|
</div>
|
|
<br>
|
|
<div class="row">
|
|
@if(Auth::user()->can('procedure-category-create') || Auth::user()->can('procedure-category-list') || Auth::user()->can('procedure-category-delete'))
|
|
<div class="col-md-4">
|
|
<h3 class="box-title">{{ __('clinical_data.title_procedure_categories') }}</h3>
|
|
<ul class="feeds">
|
|
@if( Auth::user()->can('procedure-category-create'))
|
|
<a href="{{ route('procedure_categories.create') }}">
|
|
<li>
|
|
<div class="bg-success"><i class="fa fa-plus-circle text-white"></i></div> {{ __('clinical_data.add_procedure_categories') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
@if( Auth::user()->can('procedure-category-list'))
|
|
<a href="{{ route('procedure_categories.index') }}">
|
|
<li>
|
|
<div class="bg-info"><i class="fa fa-eye text-white"></i></div>{{ __('clinical_data.view_procedure_categories') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
@if( Auth::user()->can('procedure-category-delete'))
|
|
<a href="{{ route('procedure_categories.inactive') }}">
|
|
<li>
|
|
<div class="bg-danger"><i class="fa fa-eye-slash text-white"></i></div> {{ __('clinical_data.inactive_procedure_categories') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
</ul>
|
|
</div>
|
|
@endif
|
|
|
|
@if(Auth::user()->can('sundry-create') || Auth::user()->can('sundry-list') || Auth::user()->can('sundry-delete'))
|
|
<div class="col-md-4">
|
|
<h3 class="box-title">{{ __('clinical_data.title_sundries') }}</h3>
|
|
<ul class="feeds">
|
|
@if( Auth::user()->can('sundry-create'))
|
|
<a href="{{ route('sundries.create') }}">
|
|
<li>
|
|
<div class="bg-success"><i class="fa fa-plus-circle text-white"></i></div> {{ __('clinical_data.add_sundries') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
@if( Auth::user()->can('sundry-list'))
|
|
<a href="{{ route('sundries.index') }}">
|
|
<li>
|
|
<div class="bg-info"><i class="fa fa-eye text-white"></i></div> {{ __('clinical_data.view_sundries') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
@if( Auth::user()->can('sundry-delete'))
|
|
<a href="{{ route('sundries.inactive') }}">
|
|
<li>
|
|
<div class="bg-danger"><i class="fa fa-eye-slash text-white"></i></div> {{ __('clinical_data.inactive_sundries') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
</ul>
|
|
</div>
|
|
@endif
|
|
@if(Auth::user()->can('sundry-form-create') || Auth::user()->can('sundry-form-list') || Auth::user()->can('sundry-form-delete'))
|
|
<div class="col-md-4">
|
|
<h3 class="box-title">{{ __('clinical_data.title_sundries_forms') }}</h3>
|
|
<ul class="feeds">
|
|
@if( Auth::user()->can('sundry-form-create'))
|
|
<a href="{{ route('sundry_form.create') }}">
|
|
<li>
|
|
<div class="bg-success"><i class="fa fa-plus-circle text-white"></i></div> {{ __('clinical_data.add_sundry_form') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
@if( Auth::user()->can('sundry-form-list'))
|
|
<a href="{{ route('sundry_form.index') }}">
|
|
<li>
|
|
<div class="bg-info"><i class="fa fa-eye text-white"></i></div> {{ __('clinical_data.view_sundry_form') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
@if( Auth::user()->can('sundry-form-delete'))
|
|
<a href="{{ route('sundry_forms.inactive') }}">
|
|
<li>
|
|
<div class="bg-danger"><i class="fa fa-eye-slash text-white"></i></div> {{ __('clinical_data.inactive_sundry_form') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
</ul>
|
|
</div>
|
|
@endif
|
|
@if(Module::has('Investigations') && Module::isEnabled('Investigations') && (Auth::user()->can('investigations-category-create') || Auth::user()->can('investigations-category-list') || Auth::user()->can('investigations-category-delete')))
|
|
<div class="col-md-4">
|
|
<h3 class="box-title">{{ __('clinical_data.title_investigation_categories') }}</h3>
|
|
<ul class="feeds">
|
|
@if( Auth::user()->can('investigations-category-create'))
|
|
<a href="{{ route('investigation_categories.create') }}">
|
|
<li>
|
|
<div class="bg-success"><i class="fa fa-plus-circle text-white"></i></div> {{ __('clinical_data.add_investigation_categories') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
@if( Auth::user()->can('investigations-category-list'))
|
|
<a href="{{ route('investigation_categories.index') }}">
|
|
<li>
|
|
<div class="bg-info"><i class="fa fa-eye text-white"></i></div> {{ __('clinical_data.view_investigation_categories') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
@if( Auth::user()->can('investigations-category-delete'))
|
|
<a href="{{ route('investigation_categories.inactive') }}">
|
|
<li>
|
|
<div class="bg-danger"><i class="fa fa-eye-slash text-white"></i></div> {{ __('clinical_data.inactive_investigation_categories') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
</ul>
|
|
</div>
|
|
@endif
|
|
</div>
|
|
<br>
|
|
<div class="row">
|
|
@if(Auth::user()->can('observation-create') || Auth::user()->can('observation-list') || Auth::user()->can('observation-delete'))
|
|
<div class="col-md-4">
|
|
<h3 class="box-title">{{ __('clinical_data.title_observations') }}</h3>
|
|
<ul class="feeds">
|
|
@if( Auth::user()->can('observation-create'))
|
|
<a href="{{ route('observations.create') }}">
|
|
<li>
|
|
<div class="bg-success"><i class="fa fa-plus-circle text-white"></i></div> {{ __('clinical_data.add_observations') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
@if( Auth::user()->can('observation-list'))
|
|
<a href="{{ route('observations.index') }}">
|
|
<li>
|
|
<div class="bg-info"><i class="fa fa-eye text-white"></i></div> {{ __('clinical_data.view_observations') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
@if( Auth::user()->can('observation-delete'))
|
|
<a href="{{ route('observations.inactive') }}">
|
|
<li>
|
|
<div class="bg-danger"><i class="fa fa-eye-slash text-white"></i></div> {{ __('clinical_data.inactive_observations') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
</ul>
|
|
</div>
|
|
@endif
|
|
|
|
@if(Auth::user()->can('dosage-frequency-create') || Auth::user()->can('dosage-frequency-list') || Auth::user()->can('dosage-frequency-delete'))
|
|
<div class="col-md-4">
|
|
<h3 class="box-title">{{ __('clinical_data.title_dosage_frequencies') }}</h3>
|
|
<ul class="feeds">
|
|
@if( Auth::user()->can('dosage-frequency-create'))
|
|
<a href="{{ route('dosage_frequencies.create') }}">
|
|
<li>
|
|
<div class="bg-success"><i class="fa fa-plus-circle text-white"></i></div> {{ __('clinical_data.add_dosage_frequencies') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
@if( Auth::user()->can('dosage-frequency-list'))
|
|
<a href="{{ route('dosage_frequencies.index') }}">
|
|
<li>
|
|
<div class="bg-info"><i class="fa fa-eye text-white"></i></div> {{ __('clinical_data.view_dosage_frequencies') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
@if( Auth::user()->can('dosage-frequency-delete'))
|
|
<a href="{{ route('dosage_frequencies.inactive') }}">
|
|
<li>
|
|
<div class="bg-danger"><i class="fa fa-eye-slash text-white"></i></div> {{ __('clinical_data.inactive_dosage_frequencies') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
</ul>
|
|
</div>
|
|
@endif
|
|
|
|
@if(Auth::user()->can('referral-hospital-create') || Auth::user()->can('referral-hospital-list') || Auth::user()->can('referral-hospital-delete'))
|
|
<div class="col-md-4">
|
|
<h3 class="box-title">{{ __('clinical_data.title_referral_hospitals') }}</h3>
|
|
<ul class="feeds">
|
|
@if( Auth::user()->can('referral-hospital-create'))
|
|
<a href="{{ route('referral_hospitals.create') }}">
|
|
<li>
|
|
<div class="bg-success"><i class="fa fa-plus-circle text-white"></i></div> {{ __('clinical_data.add_referral_hospitals') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
@if( Auth::user()->can('referral-hospital-list'))
|
|
<a href="{{ route('referral_hospitals.index') }}">
|
|
<li>
|
|
<div class="bg-info"><i class="fa fa-eye text-white"></i></div> {{ __('clinical_data.view_referral_hospitals') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
@if( Auth::user()->can('referral-hospital-delete'))
|
|
<a href="{{ route('referral_hospitals.inactive') }}">
|
|
<li>
|
|
<div class="bg-danger"><i class="fa fa-eye-slash text-white"></i></div> {{ __('clinical_data.inactive_referral_hospitals') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
</ul>
|
|
</div>
|
|
@endif
|
|
</div>
|
|
<br>
|
|
<div class="row">
|
|
@if(Auth::user()->can('age-group-create') || Auth::user()->can('age-group-list') || Auth::user()->can('age-group-delete'))
|
|
<div class="col-md-4">
|
|
<h3 class="box-title">{{ __('clinical_data.title_age_groups') }}</h3>
|
|
<ul class="feeds">
|
|
@if( Auth::user()->can('age-group-create'))
|
|
<a href="{{ route('age_groups.create') }}">
|
|
<li>
|
|
<div class="bg-success"><i class="fa fa-plus-circle text-white"></i></div> {{ __('clinical_data.add_age_groups') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
@if( Auth::user()->can('age-group-list'))
|
|
<a href="{{ route('age_groups.index') }}">
|
|
<li>
|
|
<div class="bg-info"><i class="fa fa-eye text-white"></i></div> {{ __('clinical_data.view_age_groups') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
@if( Auth::user()->can('age-group-delete'))
|
|
<a href="{{ route('age_groups.inactive') }}">
|
|
<li>
|
|
<div class="bg-danger"><i class="fa fa-eye-slash text-white"></i></div>{{ __('clinical_data.inactive_age_groups') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
</ul>
|
|
</div>
|
|
@endif
|
|
|
|
@if(Auth::user()->can('hmis-category-create') || Auth::user()->can('hmis-category-list') || Auth::user()->can('hmis-category-delete'))
|
|
<div class="col-md-4">
|
|
<h3 class="box-title">{{ __('clinical_data.title_hmis_categories') }}</h3>
|
|
<ul class="feeds">
|
|
@if( Auth::user()->can('hmis-category-create'))
|
|
<a href="{{ route('hmis_categories.create') }}">
|
|
<li>
|
|
<div class="bg-success"><i class="fa fa-plus-circle text-white"></i></div> {{ __('clinical_data.add_hmis_categories') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
@if( Auth::user()->can('hmis-category-list'))
|
|
<a href="{{ route('hmis_categories.index') }}">
|
|
<li>
|
|
<div class="bg-info"><i class="fa fa-eye text-white"></i></div> {{ __('clinical_data.view_hmis_categories') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
@if( Auth::user()->can('hmis-category-delete'))
|
|
<a href="{{ route('hmis_categories.inactive') }}">
|
|
<li>
|
|
<div class="bg-danger"><i class="fa fa-eye-slash text-white"></i></div> {{ __('clinical_data.inactive_hmis_categories') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
</ul>
|
|
</div>
|
|
@endif
|
|
|
|
@if(Auth::user()->can('unit-of-measure-create') || Auth::user()->can('unit-of-measure-list') || Auth::user()->can('unit-of-measure-delete'))
|
|
<div class="col-md-4">
|
|
<h3 class="box-title">{{ __('clinical_data.title_units_of_measure') }}</h3>
|
|
<ul class="feeds">
|
|
@if( Auth::user()->can('unit-of-measure-create'))
|
|
<a href="{{ route('unit_of_measure.create') }}">
|
|
<li>
|
|
<div class="bg-success"><i class="fa fa-plus-circle text-white"></i></div> {{ __('clinical_data.add_units_of_measure') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
@if( Auth::user()->can('unit-of-measure-list'))
|
|
<a href="{{ route('unit_of_measure.index') }}">
|
|
<li>
|
|
<div class="bg-info"><i class="fa fa-eye text-white"></i></div> {{ __('clinical_data.view_units_of_measure') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
@if( Auth::user()->can('unit-of-measure-delete'))
|
|
<a href="{{ route('unit_of_measure.inactive') }}">
|
|
<li>
|
|
<div class="bg-danger"><i class="fa fa-eye-slash text-white"></i></div> {{ __('clinical_data.inactive_units_of_measure') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
</ul>
|
|
</div>
|
|
@endif
|
|
</div>
|
|
<br>
|
|
<div class="row">
|
|
@if( Auth::user()->can('specialty-create') || Auth::user()->can('specialty-list') || Auth::user()->can('specialty-delete'))
|
|
<div class="col-md-4">
|
|
<h3 class="box-title">{{ __('clinical_data.title_specialities') }}</h3>
|
|
<ul class="feeds">
|
|
@if( Auth::user()->can('specialty-create'))
|
|
<a href="{{ route('specialities.create') }}">
|
|
<li>
|
|
<div class="bg-success"><i class="fa fa-plus-circle text-white"></i></div> {{ __('clinical_data.add_specialities') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
@if( Auth::user()->can('specialty-list'))
|
|
<a href="{{ route('specialities.index') }}">
|
|
<li>
|
|
<div class="bg-info"><i class="fa fa-eye text-white"></i></div> {{ __('clinical_data.view_specialities') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
@if( Auth::user()->can('specialty-delete'))
|
|
<a href="{{ route('specialities.inactive') }}">
|
|
<li>
|
|
<div class="bg-danger"><i class="fa fa-eye-slash text-white"></i></div> {{ __('clinical_data.inactive_specialities') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
</ul>
|
|
</div>
|
|
@endif
|
|
|
|
@if(Auth::user()->can('hmis-category-option-create') || Auth::user()->can('hmis-category-option-list') || Auth::user()->can('hmis-category-option-delete'))
|
|
<div class="col-md-4">
|
|
<h3 class="box-title">{{ __('clinical_data.title_hmis_category_options') }}</h3>
|
|
<ul class="feeds">
|
|
@if( Auth::user()->can('hmis-category-option-create'))
|
|
<a href="{{ route('hmis_categories_options.create') }}">
|
|
<li>
|
|
<div class="bg-success"><i class="fa fa-plus-circle text-white"></i></div> {{ __('hmis_categories.add_hmis_category_option') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
@if( Auth::user()->can('hmis-category-option-list'))
|
|
<a href="{{ route('hmis_categories_options.index') }}">
|
|
<li>
|
|
<div class="bg-info"><i class="fa fa-eye text-white"></i></div> {{ __('hmis_categories.view_hmis_category_option') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
@if( Auth::user()->can('hmis-category-option-delete'))
|
|
<a href="{{ route('hmis_categories_options.inactive') }}">
|
|
<li>
|
|
<div class="bg-danger"><i class="fa fa-eye-slash text-white"></i></div> {{ __('hmis_categories.inactive_hmis_category_options') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
</ul>
|
|
</div>
|
|
@endif
|
|
|
|
@if(Module::has('Investigations') && Module::isEnabled('Investigations') && (Auth::user()->can('investigations-create') || Auth::user()->can('investigations-list') || Auth::user()->can('investigations-delete')))
|
|
<div class="col-md-4">
|
|
<h3 class="box-title">{{ __('clinical_data.title_specialised_variables') }}</h3>
|
|
<ul class="feeds">
|
|
@if( Auth::user()->can('investigations-create'))
|
|
<a href="{{ route('investigation_variables.create') }}">
|
|
<li>
|
|
<div class="bg-success"><i class="fa fa-plus-circle text-white"></i></div> {{ __('clinical_data.add_specialised_variables') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
@if( Auth::user()->can('investigations-list'))
|
|
<a href="{{ route('investigation_variables.index') }}">
|
|
<li>
|
|
<div class="bg-info"><i class="fa fa-eye text-white"></i></div> {{ __('clinical_data.view_specialised_variables') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
@if( Auth::user()->can('investigations-delete'))
|
|
<a href="{{ route('investigation_variables.inactive') }}">
|
|
<li>
|
|
<div class="bg-danger"><i class="fa fa-eye-slash text-white"></i></div> {{ __('clinical_data.inactive_specialised_variables') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
</ul>
|
|
</div>
|
|
@endif
|
|
</div>
|
|
<br/>
|
|
<div class="row">
|
|
@if(Module::has('Investigations') && Module::isEnabled('Investigations') && (Auth::user()->can('investigations-codes-create') || Auth::user()->can('investigations-codes-list') || Auth::user()->can('investigations-codes-delete')))
|
|
<div class="col-md-4">
|
|
<h3 class="box-title">{{ __('clinical_data.title_test_codes') }}</h3>
|
|
<ul class="feeds">
|
|
@if( Auth::user()->can('investigations-codes-create'))
|
|
<a href="{{ route('investigation_test_codes.create') }}">
|
|
<li>
|
|
<div class="bg-success"><i class="fa fa-plus-circle text-white"></i></div>{{ __('clinical_data.add_test_codes') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
@if( Auth::user()->can('investigations-codes-list'))
|
|
<a href="{{ route('investigation_test_codes.index') }}">
|
|
<li>
|
|
<div class="bg-info"><i class="fa fa-eye text-white"></i></div> {{ __('clinical_data.view_test_codes') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
@if( Auth::user()->can('investigations-codes-delete'))
|
|
<a href="{{ route('investigation_test_codes.inactive') }}">
|
|
<li>
|
|
<div class="bg-danger"><i class="fa fa-eye-slash text-white"></i></div> {{ __('clinical_data.inactive_test_codes') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
</ul>
|
|
</div>
|
|
@endif
|
|
|
|
@if(Module::has('Investigations') && Module::isEnabled('Investigations') && (Auth::user()->can('lab-instruments-create') || Auth::user()->can('lab-instruments-list') || Auth::user()->can('lab-instruments-delete')))
|
|
<div class="col-md-4">
|
|
<h3 class="box-title">{{ __('clinical_data.title_lab_instruments') }}</h3>
|
|
<ul class="feeds">
|
|
@if( Auth::user()->can('lab-instruments-create'))
|
|
<a href="{{ route('lab_instruments.create') }}">
|
|
<li>
|
|
<div class="bg-success"><i class="fa fa-plus-circle text-white"></i></div> {{ __('clinical_data.add_lab_instruments') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
@if( Auth::user()->can('lab-instruments-list'))
|
|
<a href="{{ route('lab_instruments.index') }}">
|
|
<li>
|
|
<div class="bg-info"><i class="fa fa-eye text-white"></i></div> {{ __('clinical_data.view_lab_instruments') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
@if( Auth::user()->can('lab-instruments-delete'))
|
|
<a href="{{ route('lab_instruments.inactive') }}">
|
|
<li>
|
|
<div class="bg-danger"><i class="fa fa-eye-slash text-white"></i></div> {{ __('clinical_data.inactive_lab_instruments') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
</ul>
|
|
</div>
|
|
@endif
|
|
|
|
{{-- @if(Auth::user()->can('general_items-create') || Auth::user()->can('general_items-list') || Auth::user()->can('general_items-delete')) --}}
|
|
<div class="col-md-4">
|
|
<h3 class="box-title">{{ __('clinical_data.general_items') }}</h3>
|
|
<ul class="feeds">
|
|
{{-- @if( Auth::user()->can('general_items-create')) --}}
|
|
<a href="{{ route('general_items.create') }}">
|
|
<li>
|
|
<div class="bg-success"><i class="fa fa-plus-circle text-white"></i></div> {{ __('clinical_data.add_general_items') }} <i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
{{-- @endif --}}
|
|
{{-- @if( Auth::user()->can('general_items-list')) --}}
|
|
<a href="{{ route('general_items.index') }}">
|
|
<li>
|
|
<div class="bg-info"><i class="fa fa-eye text-white"></i></div> {{ __('clinical_data.view_general_items') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
{{-- @endif --}}
|
|
{{-- @if( Auth::user()->can('general_items-delete')) --}}
|
|
<a href="{{ route('general_items.inactive') }}">
|
|
<li>
|
|
<div class="bg-danger"><i class="fa fa-eye-slash text-white"></i></div> {{ __('clinical_data.inactive_general_items') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
{{-- @endif --}}
|
|
</ul>
|
|
</div>
|
|
{{-- @endif --}}
|
|
</div>
|
|
<br/>
|
|
<div class="row">
|
|
@if(Module::has('Investigations') && Module::isEnabled('Investigations') && (Auth::user()->can('result-templates-create') || Auth::user()->can('result-templates-list') || Auth::user()->can('result-templates-delete')))
|
|
<div class="col-md-4">
|
|
<h3 class="box-title">Investigation Result Templates</h3>
|
|
<ul class="feeds">
|
|
@if( Auth::user()->can('result-templates-create'))
|
|
<a href="{{ route('result_templates.create') }}">
|
|
<li>
|
|
<div class="bg-success"><i class="fa fa-plus-circle text-white"></i></div> Add Result Template<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
@if( Auth::user()->can('result-templates-list'))
|
|
<a href="{{ route('result_templates.index') }}">
|
|
<li>
|
|
<div class="bg-info"><i class="fa fa-eye text-white"></i></div> View Result Templates<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
@if( Auth::user()->can('result-templates-delete'))
|
|
<a href="{{ route('result_templates.inactive') }}">
|
|
<li>
|
|
<div class="bg-danger"><i class="fa fa-eye-slash text-white"></i></div> Inactive Result Templates<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
</ul>
|
|
</div>
|
|
@endif
|
|
|
|
@if(Auth::user()->can('outcome-create') || Auth::user()->can('outcome-list') || Auth::user()->can('outcome-delete'))
|
|
<div class="col-md-4">
|
|
<h3 class="box-title">{{ __('clinical_data.title_outcomes') }}</h3>
|
|
<ul class="feeds">
|
|
@if( Auth::user()->can('outcome-create'))
|
|
<a href="{{ route('outcomes.create') }}">
|
|
<li>
|
|
<div class="bg-success"><i class="fa fa-plus-circle text-white"></i></div> {{ __('clinical_data.add_outcomes') }} <i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
@if( Auth::user()->can('outcome-list'))
|
|
<a href="{{ route('outcomes.index') }}">
|
|
<li>
|
|
<div class="bg-info"><i class="fa fa-eye text-white"></i></div> {{ __('clinical_data.view_outcomes') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
@if( Auth::user()->can('outcome-edit'))
|
|
<a href="{{ route('outcomes.edit.all') }}">
|
|
<li>
|
|
<div class="bg-warning"><i class="fa fa-pencil text-white"></i></div> {{ __('clinical_data.bulk_edit_outcomes') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
@if( Auth::user()->can('outcome-delete'))
|
|
<a href="{{ route('outcomes.inactive') }}">
|
|
<li>
|
|
<div class="bg-danger"><i class="fa fa-eye-slash text-white"></i></div> {{ __('clinical_data.inactive_outcomes') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
</ul>
|
|
</div>
|
|
@endif
|
|
|
|
@if(Module::has('Investigations') && Module::isEnabled('Investigations') && (Auth::user()->can('dental-create') || Auth::user()->can('dental-list') || Auth::user()->can('dental-delete')))
|
|
<div class="col-md-4">
|
|
<h3 class="box-title">{{ __('clinical_data.title_dentals') }}</h3>
|
|
<ul class="feeds">
|
|
@if( Auth::user()->can('dental-create'))
|
|
<a href="{{ route('dentals.create') }}">
|
|
<li>
|
|
<div class="bg-success"><i class="fa fa-plus-circle text-white"></i></div> {{ __('clinical_data.add_dentals') }} <i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
@if( Auth::user()->can('dental-list'))
|
|
<a href="{{ route('dentals.index') }}">
|
|
<li>
|
|
<div class="bg-info"><i class="fa fa-eye text-white"></i></div> {{ __('clinical_data.view_dentals') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
@if( Auth::user()->can('dental-edit'))
|
|
<a href="{{ route('dentals.edit.all') }}">
|
|
<li>
|
|
<div class="bg-warning"><i class="fa fa-pencil text-white"></i></div> {{ __('clinical_data.bulk_edit_dentals') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
@if( Auth::user()->can('dental-usage-report'))
|
|
<a href="{{ route('dentals.usage_report') }}">
|
|
<li>
|
|
<div class="bg-info"><i class="fa fa-eye text-white"></i></div> {{ __('dentals.dental_usage_report') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
@if( Auth::user()->can('dental-requisitions'))
|
|
<a href="{{ route('dentals.requisitions') }}">
|
|
<li>
|
|
<div class="bg-info"><i class="fa fa-eye text-white"></i></div> {{ __('dentals.dental_requisitions') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
@if( Auth::user()->can('dental-usage-listing'))
|
|
<a href="{{ route('dentals.usage_listing') }}">
|
|
<li>
|
|
<div class="bg-info"><i class="fa fa-eye text-white"></i></div> {{ __('dentals.dental_usage_listing') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
@if( Auth::user()->can('dental-delete'))
|
|
<a href="{{ route('dentals.inactive') }}">
|
|
<li>
|
|
<div class="bg-danger"><i class="fa fa-eye-slash text-white"></i></div> {{ __('clinical_data.inactive_dentals') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
</ul>
|
|
</div>
|
|
@endif
|
|
</div>
|
|
<br/>
|
|
<div class="row">
|
|
@if(Module::has('Investigations') && Module::isEnabled('Investigations') && (Auth::user()->can('radiology-create') || Auth::user()->can('radiology-list') || Auth::user()->can('radiology-delete')))
|
|
<div class="col-md-4">
|
|
<h3 class="box-title">{{ __('clinical_data.title_radiologies') }}</h3>
|
|
<ul class="feeds">
|
|
@if( Auth::user()->can('radiology-create'))
|
|
<a href="{{ route('radiology.create') }}">
|
|
<li>
|
|
<div class="bg-success"><i class="fa fa-plus-circle text-white"></i></div> {{ __('clinical_data.add_radiology') }} <i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
@if( Auth::user()->can('radiology-list'))
|
|
<a href="{{ route('radiology.index') }}">
|
|
<li>
|
|
<div class="bg-info"><i class="fa fa-eye text-white"></i></div> {{ __('clinical_data.view_radiologies') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
|
|
@if( Auth::user()->can('radiology-delete'))
|
|
<a href="{{ route('radiology.inactive') }}">
|
|
<li>
|
|
<div class="bg-danger"><i class="fa fa-eye-slash text-white"></i></div> {{ __('clinical_data.inactive_radiologies') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
</ul>
|
|
</div>
|
|
@endif
|
|
|
|
@if(Auth::user()->can('eye_glasses-create') || Auth::user()->can('eye_glasses-list') || Auth::user()->can('eye_glasses-delete'))
|
|
<div class="col-md-4">
|
|
<h3 class="box-title">{{ __('clinical_data.opticals') }}</h3>
|
|
<ul class="feeds">
|
|
@if( Auth::user()->can('eye_glasses-create'))
|
|
<a href="{{ route('opticals.create') }}">
|
|
<li>
|
|
<div class="bg-success"><i class="fa fa-plus-circle text-white"></i></div> {{ __('clinical_data.add_opticals') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
@if( Auth::user()->can('eye_glasses-list'))
|
|
<a href="{{ route('opticals.index') }}">
|
|
<li>
|
|
<div class="bg-info"><i class="fa fa-eye text-white"></i></div> {{ __('clinical_data.view_opticals') }} <i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
@if( Auth::user()->can('eye_glasses-delete'))
|
|
<a href="{{ route('opticals.inactive') }}">
|
|
<li>
|
|
<div class="bg-danger"><i class="fa fa-eye-slash text-white"></i></div> {{ __('clinical_data.inactive_opticals') }} <i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
</ul>
|
|
</div>
|
|
@endif
|
|
|
|
@if( Auth::user()->can('test_areas-create') || Auth::user()->can('test_areas-list') || Auth::user()->can('test_areas-delete'))
|
|
<div class="col-md-4">
|
|
<h3 class="box-title">Slit Lamp Test Areas</h3>
|
|
<ul class="feeds">
|
|
@if( Auth::user()->can('test_areas-create'))
|
|
<a href="{{ route('test_areas.create') }}">
|
|
<li>
|
|
<div class="bg-success"><i class="fa fa-plus-circle text-white"></i></div> Add Test Area<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
@if( Auth::user()->can('test_areas-list'))
|
|
<a href="{{ route('test_areas.index') }}">
|
|
<li>
|
|
<div class="bg-info"><i class="fa fa-eye text-white"></i></div> View Test Areas<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
@if( Auth::user()->can('test_areas-delete'))
|
|
<a href="{{ route('test_areas.inactive') }}">
|
|
<li>
|
|
<div class="bg-danger"><i class="fa fa-eye-slash text-white"></i></div> Inactive Test Areas<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
</ul>
|
|
</div>
|
|
@endif
|
|
</div>
|
|
|
|
<div class="row">
|
|
@if( Auth::user()->can('test_area_values-create') || Auth::user()->can('test_area_values-list') || Auth::user()->can('test_area_values-delete'))
|
|
<div class="col-md-4">
|
|
<h3 class="box-title">Slit Lamp Test Area Values</h3>
|
|
<ul class="feeds">
|
|
@if( Auth::user()->can('test_area_values-create'))
|
|
<a href="{{ route('test_area_values.create') }}">
|
|
<li>
|
|
<div class="bg-success"><i class="fa fa-plus-circle text-white"></i></div> Add Test Area Value<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
@if( Auth::user()->can('test_area_values-list'))
|
|
<a href="{{ route('test_area_values.index') }}">
|
|
<li>
|
|
<div class="bg-info"><i class="fa fa-eye text-white"></i></div> View Test Area Values<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
@if( Auth::user()->can('test_area_values-delete'))
|
|
<a href="{{ route('test_area_values.inactive') }}">
|
|
<li>
|
|
<div class="bg-danger"><i class="fa fa-eye-slash text-white"></i></div> Inactive Test Area Values<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
</ul>
|
|
</div>
|
|
@endif
|
|
|
|
@if( Auth::user()->can('hmis-ward-list') || Auth::user()->can('hmis-ward-create') || Auth::user()->can('hmis-ward-list'))
|
|
<div class="col-md-4">
|
|
<h3 class="box-title">{{ __('wards.hmis_ward_list') }}</h3>
|
|
<ul class="feeds">
|
|
@if( Auth::user()->can('hmis-ward-create'))
|
|
<a href="{{ route('hmis_wards.create') }}">
|
|
<li>
|
|
<div class="bg-success"><i class="fa fa-plus-circle text-white"></i></div> {{ __('wards.hmis_create_ward') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
@if( Auth::user()->can('hmis-ward-list'))
|
|
<a href="{{ route('hmis_wards.index') }}">
|
|
<li>
|
|
<div class="bg-info"><i class="fa fa-eye text-white"></i></div> {{ __('wards.hmis_view_wards') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
@if( Auth::user()->can('hmis-ward-list'))
|
|
<a href="{{ route('hmis_wards.inactive') }}">
|
|
<li>
|
|
<div class="bg-danger"><i class="fa fa-eye-slash text-white"></i></div> {{ __('wards.hmis_inactive_wards') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
</ul>
|
|
</div>
|
|
@endif
|
|
|
|
@if( Auth::user()->can('list-patient-registration-fields') || Auth::user()->can('create-patient-registration-field') || Auth::user()->can('delete-patient-registration-field'))
|
|
<div class="col-md-4">
|
|
<h3 class="box-title">{{ __('patients.patient_registration_fields') }}</h3>
|
|
<ul class="feeds">
|
|
@if(Auth::user()->can('create-patient-registration-field'))
|
|
<a href="{{ route('patient_registration_fields.create') }}">
|
|
<li>
|
|
<div class="bg-success"><i class="fa fa-plus-circle text-white"></i></div> {{ __('patients.create_patient_registration_fields') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
@if(Auth::user()->can('list-patient-registration-fields'))
|
|
<a href="{{ route('patient_registration_fields.index') }}">
|
|
<li>
|
|
<div class="bg-info"><i class="fa fa-eye text-white"></i></div> {{ __('patients.view_patient_registration_fields') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
@if( Auth::user()->can('delete-patient-registration-field'))
|
|
<a href="{{ route('patient_registration_fields.inactive') }}">
|
|
<li>
|
|
<div class="bg-danger"><i class="fa fa-eye-slash text-white"></i></div> {{ __('patients.inactive_patient_registration_fields') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
</ul>
|
|
</div>
|
|
@endif
|
|
</div>
|
|
<div class="row">
|
|
@if( Auth::user()->can('services-create') || Auth::user()->can('services-list') || Auth::user()->can('services-delete'))
|
|
<div class="col-md-4">
|
|
<h3 class="box-title">{{ __('clinical_data.title_services') }}</h3>
|
|
<ul class="feeds">
|
|
@if( Auth::user()->can('services-create'))
|
|
<a href="{{ route('service_items.create') }}">
|
|
<li>
|
|
<div class="bg-success"><i class="fa fa-plus-circle text-white"></i></div> {{ __('clinical_data.add_services') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
@if( Auth::user()->can('services-list'))
|
|
<a href="{{ route('service_items.index') }}">
|
|
<li>
|
|
<div class="bg-info"><i class="fa fa-eye text-white"></i></div> {{ __('clinical_data.view_services') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
@if( Auth::user()->can('services-delete'))
|
|
<a href="{{ route('service_items.inactive') }}">
|
|
<li>
|
|
<div class="bg-danger"><i class="fa fa-eye-slash text-white"></i></div> {{ __('clinical_data.inactive_services') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
</ul>
|
|
</div>
|
|
@endif
|
|
</div>
|
|
|
|
<br>
|
|
|
|
<div class="row">
|
|
@if(Module::has('Cancer') && Module::isEnabled('Cancer') && (Auth::user()->can('cancer-protocol-list') || Auth::user()->can('cancer-protocol-create') || Auth::user()->can('cancer-protocol-delete')))
|
|
<div class="col-md-4">
|
|
<h3 class="box-title">{{ __('cancer_protocol.cancer_protocols') }}</h3>
|
|
<ul class="feeds">
|
|
@if( Auth::user()->can('cancer-protocol-create'))
|
|
<a href="{{ route('cancer_protocol.create') }}">
|
|
<li>
|
|
<div class="bg-success"><i class="fa fa-plus-circle text-white"></i></div> {{ __('cancer_protocol.add_cancer_protocol') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
@if( Auth::user()->can('cancer-protocol-list'))
|
|
<a href="{{ route('cancer_protocol.index') }}">
|
|
<li>
|
|
<div class="bg-info"><i class="fa fa-eye text-white"></i></div> {{ __('cancer_protocol.view_cancer_protocols') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
@if( Auth::user()->can('cancer-protocol-delete'))
|
|
<a href="{{ route('cancer_protocol.inactive') }}">
|
|
<li>
|
|
<div class="bg-danger"><i class="fa fa-eye-slash text-white"></i></div> {{ __('cancer_protocol.inactive_cancer_protocols') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
</ul>
|
|
</div>
|
|
@endif
|
|
|
|
@if(Auth::user()->can('drug-route-create') || Auth::user()->can('drug-route-list') || Auth::user()->can('drug-route-delete'))
|
|
<div class="col-md-4">
|
|
<h3 class="box-title">{{ __('clinical_data.title_drug_routes') }}</h3>
|
|
<ul class="feeds">
|
|
@if( Auth::user()->can('drug-route-create'))
|
|
<a href="{{ route('drug_routes.create') }}">
|
|
<li>
|
|
<div class="bg-success"><i class="fa fa-plus-circle text-white"></i></div> {{ __('clinical_data.add_drug_routes') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
@if( Auth::user()->can('drug-route-list'))
|
|
<a href="{{ route('drug_routes.index') }}">
|
|
<li>
|
|
<div class="bg-info"><i class="fa fa-eye text-white"></i></div> {{ __('clinical_data.view_drug_routes') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
@if( Auth::user()->can('drug-route-delete'))
|
|
<a href="{{ route('drug_routes.inactive') }}">
|
|
<li>
|
|
<div class="bg-danger"><i class="fa fa-eye-slash text-white"></i></div> {{ __('clinical_data.inactive_drug_routes') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
@endif
|
|
</ul>
|
|
</div>
|
|
@endif
|
|
</div>
|
|
</div>
|
|
@endsection |