23 lines
889 B
PHP
23 lines
889 B
PHP
@canany(['update-common-widgets', 'delete-common-widgets'])
|
|
<div>
|
|
<a class="btn btn-sm items-align-center card-action-button 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">
|
|
@can('update-common-widgets')
|
|
{!! Form::button(trans('general.edit'), [
|
|
'type' => 'button',
|
|
'class' => 'dropdown-item',
|
|
'title' => trans('general.edit'),
|
|
'@click' => 'onEditWidget(' . $class->model->id . ')'
|
|
]) !!}
|
|
@endcan
|
|
@can('delete-common-widgets')
|
|
<div class="dropdown-divider"></div>
|
|
{!! Form::deleteLink($class->model, 'widgets.destroy') !!}
|
|
@endcan
|
|
</div>
|
|
</div>
|
|
@endcanany
|