akaunting/resources/views/partials/widgets/stats_header.blade.php

25 lines
996 B
PHP
Raw Normal View History

2020-10-14 14:07:59 +00:00
@canany(['update-common-widgets', 'delete-common-widgets'])
2019-12-31 08:27:49 +00:00
<span>
<div class="dropdown card-action-button">
<a class="btn btn-sm items-align-center py-2 mr-0 shadow-none--hover" href="#" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<i class="fa fa-ellipsis-v text-white"></i>
</a>
<div class="dropdown-menu dropdown-menu-right dropdown-menu-arrow">
2020-10-14 14:07:59 +00:00
@can('update-common-widgets')
2019-12-31 08:27:49 +00:00
{!! Form::button(trans('general.edit'), [
'type' => 'button',
'class' => 'dropdown-item',
'title' => trans('general.edit'),
2020-01-15 21:42:20 +00:00
'@click' => 'onEditWidget(' . $class->model->id . ')'
2019-12-31 08:27:49 +00:00
]) !!}
2020-10-14 14:07:59 +00:00
@endcan
@can('delete-common-widgets')
2019-12-31 08:27:49 +00:00
<div class="dropdown-divider"></div>
2020-01-15 21:42:20 +00:00
{!! Form::deleteLink($class->model, 'common/widgets') !!}
2020-10-14 14:07:59 +00:00
@endcan
2019-12-31 08:27:49 +00:00
</div>
</div>
2020-01-07 14:15:00 +00:00
</span>
2020-10-14 14:07:59 +00:00
@endcanany