@props([ 'type' => 'success', ]) @php $styles = match($type) { 'success' => [ 'bg' => 'bg-green-50', 'border' => 'border-green-200', 'text' => 'text-green-800', 'icon' => '✔️', ], 'error' => [ 'bg' => 'bg-red-50', 'border' => 'border-red-200', 'text' => 'text-red-800', 'icon' => '❌', ], 'info' => [ 'bg' => 'bg-blue-50', 'border' => 'border-blue-200', 'text' => 'text-blue-800', 'icon' => 'ℹ️', ], }; @endphp