@props([ 'type' => 'info', 'title' => null, 'dismissible' => true, ]) @php $colors = [ 'info' => 'bg-blue-50 border-blue-200 text-blue-800', 'success' => 'bg-green-50 border-green-200 text-green-800', 'warning' => 'bg-yellow-50 border-yellow-200 text-yellow-800', 'error' => 'bg-red-50 border-red-200 text-red-800', ]; $bgColor = $colors[$type] ?? $colors['info']; $icons = [ 'info' => 'ℹ️', 'success' => '✓', 'warning' => '⚠️', 'error' => '✕', ]; $icon = $icons[$type] ?? $icons['info']; @endphp