No notifications yet
You'll see alerts here when proposals are approved, payments are recorded, and more.
@else
@foreach($notifications as $n)
@php
$color = $n->data['color'] ?? 'blue';
$icon = $n->data['icon'] ?? 'bell';
$iconBg = match($color) {
'green' => 'bg-emerald-50 text-emerald-600',
'red' => 'bg-red-50 text-red-600',
'amber' => 'bg-amber-50 text-amber-600',
default => 'bg-sky-50 text-sky-600',
};
$iconPath = match($icon) {
'check-circle' => 'M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z',
'x-circle' => 'M10 14l2-2m0 0l2-2m-2 2l-2-2m2 2l2 2m7-2a9 9 0 11-18 0 9 9 0 0118 0z',
'currency-pound' => 'M14.121 15.536c-1.171 1.952-3.07 1.952-4.242 0-1.172-1.953-1.172-5.119 0-7.072 1.171-1.952 3.07-1.952 4.242 0M8 10.5h4m-4 3h4m9-1.5a9 9 0 11-18 0 9 9 0 0118 0z',
'exclamation-circle'=> 'M12 8v4m0 4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z',
'clock' => 'M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z',
'user-plus' => 'M18 9v3m0 0v3m0-3h3m-3 0h-3m-2-5a4 4 0 11-8 0 4 4 0 018 0zM3 20a6 6 0 0112 0v1H3v-1z',
default => 'M15 17h5l-1.405-1.405A2.032 2.032 0 0118 14.158V11a6.002 6.002 0 00-4-5.659V5a2 2 0 10-4 0v.341C7.67 6.165 6 8.388 6 11v3.159c0 .538-.214 1.055-.595 1.436L4 17h5m6 0v1a3 3 0 11-6 0v-1m6 0H9',
};
@endphp
{{-- Icon circle --}}
{{-- Content --}}
{{ $n->data['title'] ?? '' }}
@if(!$n->read_at)
@endif
{{ $n->data['message'] ?? '' }}
{{ $n->created_at->diffForHumans() }}
{{-- Actions --}}
@if(!empty($n->data['url']))
@endif