@php $color = strtolower((string) ($color ?? 'warning')); $classes = match ($color) { 'success' => 'bg-green-50 text-green-800 ring-1 ring-green-200', 'danger', 'error' => 'bg-red-50 text-red-800 ring-1 ring-red-200', 'info' => 'bg-blue-50 text-blue-800 ring-1 ring-blue-200', 'primary' => 'bg-primary-50 text-primary-800 ring-1 ring-primary-200', 'gray', 'grey' => 'bg-gray-50 text-gray-800 ring-1 ring-gray-200', default => 'bg-yellow-50 text-yellow-800 ring-1 ring-yellow-200', }; @endphp
{{ $message ?? '' }}