@props(['type' => 'info', 'dismissible' => true]) @php $classes = match($type) { 'success' => 'alert-success', 'error', 'danger' => 'alert-danger', 'warning' => 'alert-warning', default => 'alert-info', }; $icon = match($type) { 'success' => 'check-circle', 'error', 'danger' => 'exclamation-triangle', 'warning' => 'exclamation-circle', default => 'info-circle', }; @endphp