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:
+437
@@ -0,0 +1,437 @@
|
||||
@extends('layouts.main')
|
||||
|
||||
@push('styles')
|
||||
<link href="{{ asset('/elite/bower_components/datatables/jquery.dataTables.min.css') }}" rel="stylesheet" type="text/css" />
|
||||
<link href="{{ asset('elite/tables/css/buttons.dataTables.min.css') }}" rel="stylesheet" type="text/css" />
|
||||
@endpush
|
||||
|
||||
@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">{{ __('insurance_benefits.insurance_benefits_details') }}</h4>
|
||||
</div>
|
||||
<div class="col-lg-9 col-sm-8 col-md-8 col-xs-12">
|
||||
<ol class="breadcrumb">
|
||||
<li><a href="{{ route('home') }}">{{ __('insurance_groups.dashboard') }}</a></li>
|
||||
<li><a href="/insurance_benefits/">{{ __('insurance_benefits.insurance_benefits') }}</a></li>
|
||||
<li class="active">{{ __('insurance_benefits.details') }}</li>
|
||||
</ol>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@include('insurance::insurance_benefits.menu')
|
||||
|
||||
<div class="white-box">
|
||||
|
||||
@include('flash::message')
|
||||
|
||||
<h3 class="text-center">{{ $benefit->name . ' ' . __('insurance_benefits.items') }} ({{ get_name($benefit->plan_id, 'id', 'name', 'community_health_insurance_plans') }} {{ __('insurance_benefits.plan') }})</h3>
|
||||
|
||||
<h4>{{ __('insurance_benefits.procedures') }}</h4>
|
||||
|
||||
<table class="table color-bordered-table success-bordered-table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>{{ __('insurance_benefits.name') }}</th>
|
||||
<th>{{ __('insurance_benefits.authorisation') }}</th>
|
||||
<th>{{ __('insurance_benefits.cash_price') }}</th>
|
||||
<th>{{ __('insurance_benefits.opd_co_payment') }}</th>
|
||||
<th>{{ __('insurance_benefits.ipd_co_payment') }}</th>
|
||||
<th>{{ __('insurance_benefits.capitation_fee') }}</th>
|
||||
<th>{{ __('insurance_benefits.annual_member_limit') }}</th>
|
||||
<th>{{ __('insurance_benefits.annual_family_limit') }}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@foreach($benefit_procedures as $record)
|
||||
@php $items_array = explode(",", $record->item_id); $count = 0; @endphp
|
||||
|
||||
@foreach($items_array as $item_id)
|
||||
@php
|
||||
$item_details = get_item_insurance_details($item_id, 2, $benefit->id);
|
||||
|
||||
if (!$item_details) {
|
||||
continue;
|
||||
}
|
||||
|
||||
if ($count > 4) {break;}
|
||||
|
||||
$count++;
|
||||
@endphp
|
||||
|
||||
<tr>
|
||||
<td>{{ $procedures[$item_id] ?? '' }}</td>
|
||||
<td>{{ $item_details['authorisation'] == 1 ? 'Yes' : 'No' }}</td>
|
||||
<td>{{ ugandan_shillings($item_details['cash_price']) }}</td>
|
||||
<td>
|
||||
@if(isset($item_details['apply_opd_percentage']) && $item_details['apply_opd_percentage'] == 1)
|
||||
{{ ugandan_shillings(($benefit->opd_percentage / 100) * $item_details['cash_price']) }}
|
||||
<br><br>
|
||||
<i style="color: #990055">{{ $benefit->opd_percentage . '% ' . __('insurance_benefits.of_cash_price') }}</i>
|
||||
@else
|
||||
{{ ugandan_shillings($item_details['co_payment']) }}
|
||||
@endif
|
||||
</td>
|
||||
<td>
|
||||
@if(isset($item_details['apply_ipd_percentage']) && $item_details['apply_ipd_percentage'] == 1)
|
||||
{{ ugandan_shillings(($benefit->ipd_percentage / 100) * $item_details['cash_price']) }}
|
||||
<br><br>
|
||||
<i style="color: #990055">{{ $benefit->ipd_percentage . '% ' . __('insurance_benefits.of_cash_price') }}</i>
|
||||
@else
|
||||
{{ ugandan_shillings($item_details['ipd_co_payment'] ?? 0) }}
|
||||
@endif
|
||||
</td>
|
||||
<td>{{ ugandan_shillings($item_details['capitation_fee']) }}</td>
|
||||
<td>{{ ugandan_shillings($item_details['annual_member_limit']) }}</td>
|
||||
<td>{{ ugandan_shillings($item_details['annual_family_limit']) }}</td>
|
||||
</tr>
|
||||
@endforeach
|
||||
@endforeach
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
@if(Auth::user()->can('insurance-items-view'))<a href="/insurance_benefits/view_items/{{ $benefit->id }}/2" class="btn btn-primary btn-sm">{{ __('insurance_benefits.view_all_procedures') }}</a>@endif
|
||||
@if(Auth::user()->can('insurance-items-create'))<a href="/insurance_benefits/add_items/{{ $benefit->id }}/2" class="btn btn-success btn-sm">{{ __('insurance_benefits.add_procedures') }}</a>@endif
|
||||
|
||||
<hr>
|
||||
|
||||
<h4>{{ __('insurance_benefits.services') }}</h4>
|
||||
|
||||
<table class="table color-bordered-table success-bordered-table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>{{ __('insurance_benefits.name') }}</th>
|
||||
<th>{{ __('insurance_benefits.authorisation') }}</th>
|
||||
<th>{{ __('insurance_benefits.cash_price') }}</th>
|
||||
<th>{{ __('insurance_benefits.opd_co_payment') }}</th>
|
||||
<th>{{ __('insurance_benefits.ipd_co_payment') }}</th>
|
||||
<th>{{ __('insurance_benefits.capitation_fee') }}</th>
|
||||
<th>{{ __('insurance_benefits.annual_member_limit') }}</th>
|
||||
<th>{{ __('insurance_benefits.annual_family_limit') }}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@foreach($benefit_services as $record)
|
||||
@php $items_array = explode(",", $record->item_id); $count = 0; @endphp
|
||||
|
||||
@foreach($items_array as $item_id)
|
||||
@php
|
||||
$item_details = get_item_insurance_details($item_id, 1, $benefit->id);
|
||||
|
||||
if (!$item_details) {
|
||||
continue;
|
||||
}
|
||||
|
||||
if ($count > 4) {break;}
|
||||
|
||||
$count++;
|
||||
@endphp
|
||||
|
||||
<tr>
|
||||
<td>{{ $services[$item_id] ?? '' }}</td>
|
||||
<td>{{ $item_details['authorisation'] == 1 ? 'Yes' : 'No' }}</td>
|
||||
<td>{{ ugandan_shillings($item_details['cash_price']) }}</td>
|
||||
<td>
|
||||
@if(isset($item_details['apply_opd_percentage']) && $item_details['apply_opd_percentage'] == 1)
|
||||
{{ ugandan_shillings(($benefit->opd_percentage / 100) * $item_details['cash_price']) }}
|
||||
<br><br>
|
||||
<i style="color: #990055">{{ $benefit->opd_percentage . '% ' . __('insurance_benefits.of_cash_price') }}</i>
|
||||
@else
|
||||
{{ ugandan_shillings($item_details['co_payment']) }}
|
||||
@endif
|
||||
</td>
|
||||
<td>
|
||||
@if(isset($item_details['apply_ipd_percentage']) && $item_details['apply_ipd_percentage'] == 1)
|
||||
{{ ugandan_shillings(($benefit->ipd_percentage / 100) * $item_details['cash_price']) }}
|
||||
<br><br>
|
||||
<i style="color: #990055">{{ $benefit->ipd_percentage . '% ' . __('insurance_benefits.of_cash_price') }}</i>
|
||||
@else
|
||||
{{ ugandan_shillings($item_details['ipd_co_payment'] ?? 0) }}
|
||||
@endif
|
||||
</td>
|
||||
<td>{{ ugandan_shillings($item_details['capitation_fee']) }}</td>
|
||||
<td>{{ ugandan_shillings($item_details['annual_member_limit']) }}</td>
|
||||
<td>{{ ugandan_shillings($item_details['annual_family_limit']) }}</td>
|
||||
</tr>
|
||||
@endforeach
|
||||
@endforeach
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
@if(Auth::user()->can('insurance-items-view'))<a href="/insurance_benefits/view_items/{{ $benefit->id }}/1" class="btn btn-primary btn-sm">{{ __('insurance_benefits.view_all_services') }}</a>@endif
|
||||
@if(Auth::user()->can('insurance-items-create'))<a href="/insurance_benefits/add_items/{{ $benefit->id }}/1" class="btn btn-success btn-sm">{{ __('insurance_benefits.add_services') }}</a>@endif
|
||||
|
||||
<hr>
|
||||
|
||||
<h4>{{ __('insurance_benefits.investigations') }}</h4>
|
||||
|
||||
<table class="table color-bordered-table success-bordered-table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>{{ __('insurance_benefits.name') }}</th>
|
||||
<th>{{ __('insurance_benefits.authorisation') }}</th>
|
||||
<th>{{ __('insurance_benefits.cash_price') }}</th>
|
||||
<th>{{ __('insurance_benefits.opd_co_payment') }}</th>
|
||||
<th>{{ __('insurance_benefits.ipd_co_payment') }}</th>
|
||||
<th>{{ __('insurance_benefits.capitation_fee') }}</th>
|
||||
<th>{{ __('insurance_benefits.annual_member_limit') }}</th>
|
||||
<th>{{ __('insurance_benefits.annual_family_limit') }}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@foreach($benefit_invs as $record)
|
||||
@php $items_array = explode(",", $record->item_id); $count = 0; @endphp
|
||||
|
||||
@foreach($items_array as $item_id)
|
||||
@php
|
||||
$item_details = get_item_insurance_details($item_id, 3, $benefit->id);
|
||||
|
||||
if (!$item_details) {
|
||||
continue;
|
||||
}
|
||||
|
||||
if ($count > 4) {break;}
|
||||
|
||||
$count++;
|
||||
@endphp
|
||||
|
||||
<tr>
|
||||
<td>{{ $investigations[$item_id] ?? '' }}</td>
|
||||
<td>{{ $item_details['authorisation'] == 1 ? 'Yes' : 'No' }}</td>
|
||||
<td>{{ ugandan_shillings($item_details['cash_price']) }}</td>
|
||||
<td>
|
||||
@if(isset($item_details['apply_opd_percentage']) && $item_details['apply_opd_percentage'] == 1)
|
||||
{{ ugandan_shillings(($benefit->opd_percentage / 100) * $item_details['cash_price']) }}
|
||||
<br><br>
|
||||
<i style="color: #990055">{{ $benefit->opd_percentage . '% ' . __('insurance_benefits.of_cash_price') }}</i>
|
||||
@else
|
||||
{{ ugandan_shillings($item_details['co_payment']) }}
|
||||
@endif
|
||||
</td>
|
||||
<td>
|
||||
@if(isset($item_details['apply_ipd_percentage']) && $item_details['apply_ipd_percentage'] == 1)
|
||||
{{ ugandan_shillings(($benefit->ipd_percentage / 100) * $item_details['cash_price']) }}
|
||||
<br><br>
|
||||
<i style="color: #990055">{{ $benefit->ipd_percentage . '% ' . __('insurance_benefits.of_cash_price') }}</i>
|
||||
@else
|
||||
{{ ugandan_shillings($item_details['ipd_co_payment'] ?? 0) }}
|
||||
@endif
|
||||
</td>
|
||||
<td>{{ ugandan_shillings($item_details['capitation_fee']) }}</td>
|
||||
<td>{{ ugandan_shillings($item_details['annual_member_limit']) }}</td>
|
||||
<td>{{ ugandan_shillings($item_details['annual_family_limit']) }}</td>
|
||||
</tr>
|
||||
@endforeach
|
||||
@endforeach
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
@if(Auth::user()->can('insurance-items-view'))<a href="/insurance_benefits/view_items/{{ $benefit->id }}/3" class="btn btn-primary btn-sm">{{ __('insurance_benefits.view_all_investigations') }}</a>@endif
|
||||
@if(Auth::user()->can('insurance-items-create'))<a href="/insurance_benefits/add_items/{{ $benefit->id }}/3" class="btn btn-success btn-sm">{{ __('insurance_benefits.add_investigations') }}</a>@endif
|
||||
|
||||
<hr>
|
||||
|
||||
<h4>{{ __('insurance_benefits.drugs') }}</h4>
|
||||
|
||||
<table class="table color-bordered-table success-bordered-table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>{{ __('insurance_benefits.name') }}</th>
|
||||
<th>{{ __('insurance_benefits.authorisation') }}</th>
|
||||
<th>{{ __('insurance_benefits.cash_price') }}</th>
|
||||
<th>{{ __('insurance_benefits.opd_co_payment') }}</th>
|
||||
<th>{{ __('insurance_benefits.ipd_co_payment') }}</th>
|
||||
<th>{{ __('insurance_benefits.capitation_fee') }}</th>
|
||||
<th>{{ __('insurance_benefits.annual_member_limit') }}</th>
|
||||
<th>{{ __('insurance_benefits.annual_family_limit') }}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@foreach($benefit_drugs as $record)
|
||||
@php $items_array = explode(",", $record->item_id); $count = 0; @endphp
|
||||
|
||||
@foreach($items_array as $item_id)
|
||||
@php
|
||||
$item_details = get_item_insurance_details($item_id, 4, $benefit->id);
|
||||
|
||||
if (!$item_details) {
|
||||
continue;
|
||||
}
|
||||
|
||||
if ($count > 4) {break;}
|
||||
|
||||
$count++;
|
||||
@endphp
|
||||
|
||||
<tr>
|
||||
<td>{{ $drugs[$item_id] ?? '' }}</td>
|
||||
<td>{{ $item_details['authorisation'] == 1 ? 'Yes' : 'No' }}</td>
|
||||
<td>{{ ugandan_shillings($item_details['cash_price']) }}</td>
|
||||
<td>
|
||||
@if(isset($item_details['apply_opd_percentage']) && $item_details['apply_opd_percentage'] == 1)
|
||||
{{ ugandan_shillings(($benefit->opd_percentage / 100) * $item_details['cash_price']) }}
|
||||
<br><br>
|
||||
<i style="color: #990055">{{ $benefit->opd_percentage . '% ' . __('insurance_benefits.of_cash_price') }}</i>
|
||||
@else
|
||||
{{ ugandan_shillings($item_details['co_payment']) }}
|
||||
@endif
|
||||
</td>
|
||||
<td>
|
||||
@if(isset($item_details['apply_ipd_percentage']) && $item_details['apply_ipd_percentage'] == 1)
|
||||
{{ ugandan_shillings(($benefit->ipd_percentage / 100) * $item_details['cash_price']) }}
|
||||
<br><br>
|
||||
<i style="color: #990055">{{ $benefit->ipd_percentage . '% ' . __('insurance_benefits.of_cash_price') }}</i>
|
||||
@else
|
||||
{{ ugandan_shillings($item_details['ipd_co_payment'] ?? 0) }}
|
||||
@endif
|
||||
</td>
|
||||
<td>{{ ugandan_shillings($item_details['capitation_fee']) }}</td>
|
||||
<td>{{ ugandan_shillings($item_details['annual_member_limit']) }}</td>
|
||||
<td>{{ ugandan_shillings($item_details['annual_family_limit']) }}</td>
|
||||
</tr>
|
||||
@endforeach
|
||||
@endforeach
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
@if(Auth::user()->can('insurance-items-view'))<a href="/insurance_benefits/view_items/{{ $benefit->id }}/4" class="btn btn-primary btn-sm">{{ __('insurance_benefits.view_all_drugs') }}</a>@endif
|
||||
@if(Auth::user()->can('insurance-items-create'))<a href="/insurance_benefits/add_items/{{ $benefit->id }}/4" class="btn btn-success btn-sm">{{ __('insurance_benefits.add_drugs') }}</a>@endif
|
||||
|
||||
<hr>
|
||||
|
||||
<h4>{{ __('insurance_benefits.sundries') }}</h4>
|
||||
|
||||
<table class="table color-bordered-table success-bordered-table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>{{ __('insurance_benefits.name') }}</th>
|
||||
<th>{{ __('insurance_benefits.authorisation') }}</th>
|
||||
<th>{{ __('insurance_benefits.cash_price') }}</th>
|
||||
<th>{{ __('insurance_benefits.opd_co_payment') }}</th>
|
||||
<th>{{ __('insurance_benefits.ipd_co_payment') }}</th>
|
||||
<th>{{ __('insurance_benefits.capitation_fee') }}</th>
|
||||
<th>{{ __('insurance_benefits.annual_member_limit') }}</th>
|
||||
<th>{{ __('insurance_benefits.annual_family_limit') }}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@foreach($benefit_sundries as $record)
|
||||
@php $items_array = explode(",", $record->item_id); $count = 0; @endphp
|
||||
|
||||
@foreach($items_array as $item_id)
|
||||
@php
|
||||
$item_details = get_item_insurance_details($item_id, 5, $benefit->id);
|
||||
|
||||
if (!$item_details) {
|
||||
continue;
|
||||
}
|
||||
|
||||
if ($count > 4) {break;}
|
||||
|
||||
$count++;
|
||||
@endphp
|
||||
|
||||
<tr>
|
||||
<td>{{ $sundries[$item_id] ?? '' }}</td>
|
||||
<td>{{ $item_details['authorisation'] == 1 ? 'Yes' : 'No' }}</td>
|
||||
<td>{{ ugandan_shillings($item_details['cash_price']) }}</td>
|
||||
<td>
|
||||
@if(isset($item_details['apply_opd_percentage']) && $item_details['apply_opd_percentage'] == 1)
|
||||
{{ ugandan_shillings(($benefit->opd_percentage / 100) * $item_details['cash_price']) }}
|
||||
<br><br>
|
||||
<i style="color: #990055">{{ $benefit->opd_percentage . '% ' . __('insurance_benefits.of_cash_price') }}</i>
|
||||
@else
|
||||
{{ ugandan_shillings($item_details['co_payment']) }}
|
||||
@endif
|
||||
</td>
|
||||
<td>
|
||||
@if(isset($item_details['apply_ipd_percentage']) && $item_details['apply_ipd_percentage'] == 1)
|
||||
{{ ugandan_shillings(($benefit->ipd_percentage / 100) * $item_details['cash_price']) }}
|
||||
<br><br>
|
||||
<i style="color: #990055">{{ $benefit->ipd_percentage . '% ' . __('insurance_benefits.of_cash_price') }}</i>
|
||||
@else
|
||||
{{ ugandan_shillings($item_details['ipd_co_payment'] ?? 0) }}
|
||||
@endif
|
||||
</td>
|
||||
<td>{{ ugandan_shillings($item_details['capitation_fee']) }}</td>
|
||||
<td>{{ ugandan_shillings($item_details['annual_member_limit']) }}</td>
|
||||
<td>{{ ugandan_shillings($item_details['annual_family_limit']) }}</td>
|
||||
</tr>
|
||||
@endforeach
|
||||
@endforeach
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
@if(Auth::user()->can('insurance-items-view'))<a href="/insurance_benefits/view_items/{{ $benefit->id }}/5" class="btn btn-primary btn-sm">{{ __('insurance_benefits.view_all_sundries') }}</a>@endif
|
||||
@if(Auth::user()->can('insurance-items-create'))<a href="/insurance_benefits/add_items/{{ $benefit->id }}/5" class="btn btn-success btn-sm">{{ __('insurance_benefits.add_sundries') }}</a>@endif
|
||||
|
||||
<hr>
|
||||
|
||||
<h4>{{ __('insurance_benefits.inpatient_accommodation') }}</h4>
|
||||
|
||||
<table class="table color-bordered-table success-bordered-table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>{{ __('insurance_benefits.bed_category') }}</th>
|
||||
<th>{{ __('insurance_benefits.authorisation') }}</th>
|
||||
<th>{{ __('insurance_benefits.type_of_pricing') }}</th>
|
||||
<th>{{ __('insurance_benefits.co_payment') }}</th>
|
||||
<th>{{ __('insurance_benefits.chi_amount') }}</th>
|
||||
<th>{{ __('insurance_benefits.gender') }}</th>
|
||||
<th>{{ __('insurance_benefits.age_limit') }}</th>
|
||||
<th>{{ __('insurance_benefits.annual_member_limit') }}</th>
|
||||
<th>{{ __('insurance_benefits.annual_family_limit') }}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@php
|
||||
$time_periods = [0 => 'Days', 1 => 'Months', 2 => 'Years'];
|
||||
$genders = [0 => 'All', 1 => 'Male', 2 => 'Female'];
|
||||
@endphp
|
||||
|
||||
@foreach($benefit_bed_categories as $record)
|
||||
@php $age_limits = explode(",", $record->age_limit); @endphp
|
||||
<tr>
|
||||
<td>{{ $bed_categories[$record->bed_category_id] ?? '' }}</td>
|
||||
<td>{{ $record->authorisation_required == 1 ? 'Yes' : 'No' }}</td>
|
||||
<td>{{ $record->cost_type == 1 ? 'Static' : 'Structured' }}</td>
|
||||
<td>{{ ugandan_shillings($record->cost_per_night ?? $record->cost_first_night) }}</td>
|
||||
<td>{{ ugandan_shillings($record->chi_cost_per_night ?? $record->chi_cost_first_night) }}</td>
|
||||
<td>{{ ($genders[$record->gender] ?? 'All') }}</td>
|
||||
<td>{{ ($age_limits[0] ?? "0") . ' to ' . ($age_limits[1] ?? "0") . ' ' . $time_periods[$record->age_type] ?? 'years' }}</td>
|
||||
<td>{{ ugandan_shillings($record->annual_member_limit) }}</td>
|
||||
<td>{{ ugandan_shillings($record->annual_family_limit) }}</td>
|
||||
</tr>
|
||||
@endforeach
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
@if(Auth::user()->can('insurance-items-view'))<a href="/insurance_benefits/view_inpatient_accommodation/{{ $benefit->id }}" class="btn btn-primary btn-sm">{{ __('insurance_benefits.view_all_items') }}</a>@endif
|
||||
@if(Auth::user()->can('insurance-items-create'))<a href="/insurance_benefits/add_inpatient_accommodation/{{ $benefit->id }}" class="btn btn-success btn-sm">{{ __('insurance_benefits.add_items') }}</a>@endif
|
||||
</div>
|
||||
@endsection
|
||||
|
||||
@push('scripts')
|
||||
|
||||
<script src="{{ asset('elite/bower_components/datatables/jquery.dataTables.min.js') }}"></script>
|
||||
|
||||
<script src="{{ asset('elite/tables/js/dataTables.buttons.min.js') }}"></script>
|
||||
<script src="{{ asset('elite/tables/js/buttons.flash.min.js') }}"></script>
|
||||
<script src="{{ asset('elite/tables/js/jszip.min.js') }}"></script>
|
||||
<script src="{{ asset('elite/tables/js/pdfmake.min.js') }}"></script>
|
||||
<script src="{{ asset('elite/tables/js/vfs_fonts.js') }}"></script>
|
||||
<script src="{{ asset('elite/tables/js/buttons.html5.min.js') }}"></script>
|
||||
<script src="{{ asset('elite/tables/js/buttons.print.min.js') }}"></script>
|
||||
|
||||
<script>
|
||||
$('.table').DataTable({
|
||||
dom: 'Bfrtip',
|
||||
bInfo: false,
|
||||
bPaginate: true,
|
||||
buttons: [
|
||||
'copy', 'csv', 'excel', 'pdf', 'print'
|
||||
]
|
||||
});
|
||||
</script>
|
||||
@endpush
|
||||
Reference in New Issue
Block a user