You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
718 B
24 lines
718 B
@if (!empty($default) || !empty($custom)) |
|
<div class="grid-dropdown-actions dropdown"> |
|
<a href="#" style="padding:0 10px;" data-toggle="dropdown"> |
|
<i class="feather icon-more-vertical"></i> |
|
</a> |
|
<ul class="dropdown-menu" style="left: -65px;"> |
|
|
|
@foreach($default as $action) |
|
<li class="dropdown-item">{!! Dcat\Admin\Support\Helper::render($action) !!}</li> |
|
@endforeach |
|
|
|
@if(!empty($custom)) |
|
|
|
@if(!empty($default)) |
|
<li class="dropdown-divider"></li> |
|
@endif |
|
|
|
@foreach($custom as $action) |
|
<li class="dropdown-item">{!! $action !!}</li> |
|
@endforeach |
|
@endif |
|
</ul> |
|
</div> |
|
@endif |