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>