@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