@props(['type' => 'success', 'message' => '', 'autoHide' => true, 'duration' => 4000]) @php $colors = [ 'success' => 'bg-green-500', 'error' => 'bg-red-500', 'warning' => 'bg-yellow-500', 'info' => 'bg-blue-500', ]; $icons = [ 'success' => 'fa-check-circle', 'error' => 'fa-exclamation-circle', 'warning' => 'fa-exclamation-triangle', 'info' => 'fa-info-circle', ]; $color = $colors[$type] ?? $colors['success']; $icon = $icons[$type] ?? $icons['success']; @endphp