@props([ 'type' => 'info', 'title' => null, 'dismissible' => false, 'icon' => null, 'important' => false, ]) @php $color = match ($type) { 'success' => 'alert-success', 'warning' => 'alert-warning', 'danger' => 'alert-danger', default => 'alert-info', }; $icon ??= match ($type) { 'success' => 'ti ti-circle-check', 'danger' => 'ti ti-alert-triangle', 'warning' => 'ti ti-alert-circle', default => 'ti ti-info-circle', }; @endphp
class(['alert', $color, 'alert-dismissible' => $dismissible, 'alert-important' => $important]) }} > @if ($icon)
@endif @if ($title)

!$important, 'mb-0'])>{!! $title !!}

@endif {{ $slot }} @if ($icon)
@endif @if ($dismissible) @endif {{ $additional ?? '' }}