@if($notifications->count() > 0)
@foreach($notifications as $notification)
@if($notification->type == 'success')
@elseif($notification->type == 'info')
@elseif($notification->type == 'warning')
@else
@endif
{{ $notification->title }}
{{ $notification->created_at->diffForHumans() }}
{{ $notification->message }}
@if(!$notification->is_read)
@endif
@endforeach
@else
@endif