mirror of
https://gitlab.com/signalytic/client-external/streamline/streamline-emr.git
synced 2026-09-12 11:11:31 +00:00
updated streamline-setup v2
This commit is contained in:
+92
@@ -0,0 +1,92 @@
|
||||
@extends('layouts.main')
|
||||
|
||||
@section('content')
|
||||
<div class="row bg-title">
|
||||
<div class="col-md-4">
|
||||
<h4 class="page-title">{{ __('wards.wards_home') }}</h4>
|
||||
</div>
|
||||
<div class="col-md-8">
|
||||
<ol class="breadcrumb">
|
||||
<li><a href="{{ route('home') }}"><i class="fa fa-boxes"></i> {{ __('home.dashboard') }}</a></li>
|
||||
<li class="active">{{ __('wards.wards_home') }}</li>
|
||||
</ol>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="white-box">
|
||||
@include('flash::message')
|
||||
<div class="row">
|
||||
<div class="col-md-4">
|
||||
<h3 class="box-title">{{ __('wards.patient_management') }}</h3>
|
||||
<ul class="feeds">
|
||||
@if( Auth::user()->can('ward-list'))
|
||||
<a href="{{ route('wards.select') }}">
|
||||
<li>
|
||||
<div class="bg-success"><i class="fa fa-plus-circle text-white"></i></div> {{ __('wards.ward_patient_list') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
||||
</li>
|
||||
</a>
|
||||
@endif
|
||||
|
||||
@if( Auth::user()->can('pharmacy-ward-dispensing-per-chart'))
|
||||
<a href="{{ route('pharmacy.ward_dispensing_per_chart') }}">
|
||||
<li>
|
||||
<div class="bg-success"><i class="fa fa-plus-circle text-white"></i></div> {{ __('layout.ward_dispensing_per_chart') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
||||
</li>
|
||||
</a>
|
||||
@endif
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="col-md-4">
|
||||
<h3 class="box-title">{{ __('stores.stock_management') }}</h3>
|
||||
<ul class="feeds">
|
||||
@if( Auth::user()->can('create-ward-item-request'))
|
||||
<a href="{{ route('ward_item_request.ward_item_requests') }}">
|
||||
<li>
|
||||
<div class="bg-info"><i class="fa fa-medkit text-white"></i></div> {{ __('layout.ward_item_request') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
||||
</li>
|
||||
</a>
|
||||
@endif
|
||||
|
||||
@if( Auth::user()->can('view-incoming-ward-dispensing-per-chart'))
|
||||
<a href="{{ url('incoming_ward_charts') }}">
|
||||
<li>
|
||||
<div class="bg-info"><i class="fa fa-medkit text-white"></i></div> {{ __('layout.incoming_ward_charts') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
||||
</li>
|
||||
</a>
|
||||
@endif
|
||||
|
||||
@if( Auth::user()->can('view-incoming-ward-item-requests'))
|
||||
<a href="{{ route('ward_item_request.incoming_ward_requests') }}">
|
||||
<li>
|
||||
<div class="bg-info"><i class="fa fa-medkit text-white"></i></div> {{ __('layout.incoming_ward_item_request') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
||||
</li>
|
||||
</a>
|
||||
@endif
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="col-md-4">
|
||||
<h3 class="box-title">{{ __('stores.reports') }}</h3>
|
||||
<ul class="feeds">
|
||||
|
||||
@if( Auth::user()->can('view-ward-drug-stock-sheet'))
|
||||
<a href="{{ url('ward_drugs_stock_sheet') }}">
|
||||
<li>
|
||||
<div class="bg-info"><i class="fa fa-book text-white"></i></div> Ward Drugs Stock Sheet<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
||||
</li>
|
||||
</a>
|
||||
@endif
|
||||
|
||||
@if( Auth::user()->can('view-ward-sundry-stock-sheet'))
|
||||
<a href="{{ url('ward_sundries_stock_sheet') }}">
|
||||
<li>
|
||||
<div class="bg-info"><i class="fa fa-book text-white"></i></div> Ward Sundries Stock Sheet<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
||||
</li>
|
||||
</a>
|
||||
@endif
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@endsection
|
||||
Reference in New Issue
Block a user