dropdown.blade.php 385 B

1234567891011
  1. @props(['color' => 'primary', 'icon' => 'wb-wrench', 'title' => ''])
  2. <button class="btn btn-{{ $color }} dropdown-toggle" data-boundary="viewport" data-toggle="dropdown" type="button" aria-expanded="false">
  3. @if ($icon)
  4. <i class="icon {{ $icon }}" aria-hidden="true"></i>
  5. @endif
  6. {{ $title }}
  7. </button>
  8. <div class="dropdown-menu" role="menu">
  9. {{ $slot }}
  10. </div>