@props([ 'type' => 'info', 'title' => null, 'dismissible' => true, 'autohide' => false, ]) @php $icons = [ 'success' => 'fa-circle-check', 'warning' => 'fa-triangle-exclamation', 'danger' => 'fa-circle-exclamation', 'info' => 'fa-circle-info', ]; @endphp
merge(['class' => 'alert alert--'.$type]) }} role="{{ in_array($type, ['danger', 'warning']) ? 'alert' : 'status' }}" @if ($autohide) data-alert-autohide @endif >
@if ($title)
{{ $title }}
@endif {{ $slot }}
@if ($dismissible) @endif