@switch($notification->type)
@case('error')
@break
@case('warning')
@break
@case('success')
@break
@default
@endswitch
{!! $notification->safe_content !!}
{{-- Related Model Info --}}
@if($notification->related_model_type && $notification->relatedModel)
@php
$linkHelper = app(\App\Services\Notification\NotificationLinkHelper::class);
$relatedLink = $linkHelper->getLinkForPlatform($notification, 'web');
@endphp
@endif
{{-- Footer --}}