12 lines
428 B
PHP
12 lines
428 B
PHP
|
|
<input type="checkbox" class="{{ $selectAllName }}" />
|
||
|
|
|
||
|
|
@if(!$isHoldSelectAllCheckbox)
|
||
|
|
<div class="btn-group">
|
||
|
|
@foreach($actions as $action)
|
||
|
|
<button type="button" class="btn btn-sm {{$action->buttonClass}} {{ $action->getElementClass(false) }}">
|
||
|
|
<i class="{{ $action->icon }}"></i>
|
||
|
|
<span class="hidden-xs">{{ $action->getTitle() }}</span>
|
||
|
|
</button>
|
||
|
|
@endforeach
|
||
|
|
</div>
|
||
|
|
@endif
|