@props(['type' => 'info', 'title' => null, 'message' => null, 'dismissible' => true, 'duration' => 5000])
@php
$types = [
'success' => [
'bg' => 'bg-green-50',
'border' => 'border-green-200',
'text' => 'text-green-800',
'icon_bg' => 'bg-green-100',
'icon_color' => 'text-green-600',
'icon' => ''
],
'error' => [
'bg' => 'bg-red-50',
'border' => 'border-red-200',
'text' => 'text-red-800',
'icon_bg' => 'bg-red-100',
'icon_color' => 'text-red-600',
'icon' => ''
],
'warning' => [
'bg' => 'bg-yellow-50',
'border' => 'border-yellow-200',
'text' => 'text-yellow-800',
'icon_bg' => 'bg-yellow-100',
'icon_color' => 'text-yellow-600',
'icon' => ''
],
'info' => [
'bg' => 'bg-blue-50',
'border' => 'border-blue-200',
'text' => 'text-blue-800',
'icon_bg' => 'bg-blue-100',
'icon_color' => 'text-blue-600',
'icon' => ''
],
];
$config = $types[$type] ?? $types['info'];
@endphp
@if($title)
{{ $title }}
@endif
{{ $message ?? $slot }}
@if($dismissible)
@endif