summaryrefslogtreecommitdiff
path: root/resources/views/toolbar/dropdown.blade.php
blob: e4cdd8a89b7009a663f00c311b4850702ecbea73 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<div class="dropdown">
    <button type="button" data-bs-toggle="dropdown" {{ $attributes->class('btn') }}>
        {{ $slot }}
    </button>
    @if ($items->isNotEmpty())
        <ul class="dropdown-menu">
            @foreach ($items as $item)
                <li>{{ $item->render() }}</li>
            @endforeach
        </ul>
    @endif
</div>