@forelse ($notifications as $notification)
@php
$data = $notification->data;
$icon = $data['icon'] ?? 'bell';
$iconBg = match ($icon) {
'domain' => 'bg-emerald-50',
'hosting' => 'bg-violet-50',
'email' => 'bg-pink-50',
'billing' => 'bg-amber-50',
'success' => 'bg-green-50',
default => 'bg-slate-100',
};
$iconColor = match ($icon) {
'domain' => 'text-emerald-600',
'hosting' => 'text-violet-600',
'email' => 'text-pink-600',
'billing' => 'text-amber-600',
'success' => 'text-green-600',
default => 'text-slate-500',
};
@endphp
No notifications
{{ $emptyMessage ?? "You're all caught up." }}