@if($notifications)
@foreach($notifications as $notif)
@php
$createdAt = Carbon\Carbon::parse($notif->created_at);
$formattedDate = $createdAt->format('l, g:i A');
$redirectRoute = App\Helpers\CommonHelper::notificationRedirectRoute($notif->route, $notif->route_id);
@endphp
@if($notif->read_status == 'unread')
{{$notif->body}}
{{$formattedDate}} {{$notif->user ? $notif->user->user_type : ''}}
@else
{{$notif->body}}
{{$formattedDate}} {{$notif->user ? $notif->user->user_type : ''}}
@endif
@endforeach
@endif