mirror of
https://gitlab.com/signalytic/client-external/streamline/streamline-emr.git
synced 2026-09-11 18:51:31 +00:00
25 lines
1.8 KiB
PHP
Executable File
25 lines
1.8 KiB
PHP
Executable File
<div class="panel panel-default" style="border-radius: 5px;">
|
|
<div class="panel-body">
|
|
@if (Route::current()->getName() != 'dentals.create')
|
|
<a href="{{ route('dentals.create') }}" class="nav-item btn btn-success ti-plus"> {{ __('dentals.add_new_dental') }}</a>
|
|
@endif
|
|
@if (Route::current()->getName() != 'dentals.edit.all')
|
|
<a href="{{ route('dentals.edit.all') }}" class="nav-item btn btn-warning ti-pencil"> {{ __('dentals.edit_all_dentals') }}</a>
|
|
@endif
|
|
@if (Route::current()->getName() != 'dentals.index')
|
|
<a href="{{ route('dentals.index') }}" class="nav-item btn btn-info ti-eye"> {{ __('dentals.view_dentals') }}</a>
|
|
@endif
|
|
@if(Auth::user()->can('dental-usage-report') && Route::current()->getName() != 'dentals.usage_report')
|
|
<a href="{{ route('dentals.usage_report') }}" class="nav-item btn btn-info ti-bar-chart"> {{ __('dentals.dental_usage_report') }}</a>
|
|
@endif
|
|
@if( Auth::user()->can('dental-requisitions') && Route::current()->getName() != 'dentals.requisitions')
|
|
<a href="{{ route('dentals.requisitions') }}" class="nav-item btn btn-info ti-eye"> {{ __('dentals.dental_requisitions') }}</a>
|
|
@endif
|
|
@if( Auth::user()->can('dental-usage-listing') && Route::current()->getName() != 'dentals.usage_listing')
|
|
<a href="{{ route('dentals.usage_listing') }}" class="nav-item btn btn-info ti-eye"> {{ __('dentals.dental_usage_listing') }}</a>
|
|
@endif
|
|
@if (Route::current()->getName() != 'dentals.inactive')
|
|
<a href="{{ route('dentals.inactive') }}" class="nav-item btn btn-danger ti-trash"> {{ __('dentals.view_inactive_dentals') }}</a>
|
|
@endif
|
|
</div>
|
|
</div> |