@php use Flasher\Prime\Notification\Envelope; /** @var Envelope $envelope */ $type = $envelope->getType(); $message = $envelope->getMessage(); $config = match($type) { 'success' => [ 'title' => 'Success', 'text_color' => 'text-green-700', 'background_color' => 'bg-green-50', 'progress_background_color' => 'bg-green-200', 'border_color' => 'border-green-600', 'icon' => '', ], 'error' => [ 'title' => 'Error', 'text_color' => 'text-red-700', 'background_color' => 'bg-red-50', 'progress_background_color' => 'bg-red-200', 'border_color' => 'border-red-600', 'icon' => '', ], 'warning' => [ 'title' => 'Warning', 'text_color' => 'text-yellow-700', 'background_color' => 'bg-yellow-50', 'progress_background_color' => 'bg-yellow-200', 'border_color' => 'border-yellow-600', 'icon' => '', ], default => [ 'title' => 'Info', 'text_color' => 'text-blue-700', 'background_color' => 'bg-blue-50', 'progress_background_color' => 'bg-blue-200', 'border_color' => 'border-blue-600', 'icon' => '', ], }; @endphp
{!! $config['icon'] !!}

{{ $config['title'] }}

{{ $message }}