{{-- resources/views/components/alert.blade.php --}} @props([ 'variant' => 'info', 'title' => '', 'message' => '', 'showLink' => false, 'linkHref' => '#', 'linkText' => 'Learn more' ]) @php $variantClasses = [ 'success' => [ 'container' => 'border-green-500 bg-green-50 dark:border-green-500/30 dark:bg-green-500/15', 'icon' => 'text-green-500', ], 'error' => [ 'container' => 'border-red-500 bg-red-50 dark:border-red-500/30 dark:bg-red-500/15', 'icon' => 'text-red-500', ], 'warning' => [ 'container' => 'border-yellow-500 bg-yellow-50 dark:border-yellow-500/30 dark:bg-yellow-500/15', 'icon' => 'text-yellow-500', ], 'info' => [ 'container' => 'border-blue-500 bg-blue-50 dark:border-blue-500/30 dark:bg-blue-500/15', 'icon' => 'text-blue-500', ], ]; $icons = [ 'success' => '', 'error' => '', 'warning' => '', 'info' => '', ]; $containerClass = $variantClasses[$variant]['container'] ?? $variantClasses['info']['container']; $iconClass = $variantClasses[$variant]['icon'] ?? $variantClasses['info']['icon']; $icon = $icons[$variant] ?? $icons['info']; @endphp
{{ $message }}
@endif @if($showLink) {{ $linkText }} @endif {{-- Slot for custom content --}} {{ $slot }}