mirror of
https://gitlab.com/signalytic/client-external/streamline/streamline-emr.git
synced 2026-09-12 11:11:31 +00:00
80 lines
4.1 KiB
PHP
Executable File
80 lines
4.1 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">
|
|
<h5 class="page-title">{{ __('insurance.insurance_reports') }}</h5>
|
|
</div>
|
|
<div class="col-lg-9 col-sm-8 col-md-8 col-xs-12">
|
|
<ol class="breadcrumb">
|
|
<li><a href="{{ route('home') }}">{{ __('insurance.dashboard') }}</a></li>
|
|
<li><a class="active">{{ __('insurance.insurance_reports') }}</a></li>
|
|
</ol>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="white-box">
|
|
|
|
<div class="row">
|
|
<div class="col-md-4">
|
|
<h3 class="box-title">{{ __('insurance.insurance_reports') }}</h3>
|
|
<ul class="feeds">
|
|
<a href="{{ route('insurance_reports.view_expiry_status') }}">
|
|
<li>
|
|
<div class="bg-info"><i class="icon-user-follow text-white"></i></div> {{ __('insurance.insurance_expiring') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
<a href="{{ route('insurance_reports.expired_insurance') }}">
|
|
<li>
|
|
<div class="bg-info"><i class="icon-user-unfollow text-white"></i></div> {{ __('insurance.expired_insurance') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
<a href="{{ route('insurance_reports.insurance_transactions') }}">
|
|
<li>
|
|
<div class="bg-info"><i class="icon-user-follow text-white"></i></div> {{ __('insurance.premiums_report') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
<!-- <a href="{{ route('insurance_reports.cumulative_premiums_report') }}">
|
|
<li>
|
|
<div class="bg-info"><i class="fa fa-eye text-white"></i></div> {{ __('insurance.cumulative_premiums_report') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
<a href="{{ route('insurance_reports.insurance_income_received') }}">
|
|
<li>
|
|
<div class="bg-info"><i class="icon-user-unfollow text-white"></i></div> {{ __('insurance.income_received') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>-->
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="col-md-4">
|
|
<h3 class="box-title">{{ __('insurance.insurance_reports') }}</h3>
|
|
<ul class="feeds">
|
|
@if( Auth::user()->can('members-with-pre-existing-premiums-report'))
|
|
<a href="{{ route('insurance_members.pre_existing_premiums_report') }}">
|
|
<li>
|
|
<div class="bg-info"><i class="fa fa-book text-white"></i></div> {{ __('insurance.members_with_pre_existing_premiums') }}<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">{{ __('insurance.expenditure_reports') }}</h3>
|
|
<ul class="feeds">
|
|
<a href="{{ route('insurance_reports.insurance_income_received') }}">
|
|
<li>
|
|
<div class="bg-info"><i class="icon-user-follow text-white"></i></div> {{ __('insurance.income_v_expend') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
<a href="{{ route('insurance_reports.insurance_expenditure') }}">
|
|
<li>
|
|
<div class="bg-info"><i class="fa fa-eye text-white"></i></div> {{ __('insurance.insurance_expenditure') }}<i class="fa fa-angle-right float-right" style="padding-top: 12.5px;"></i>
|
|
</li>
|
|
</a>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endsection |