{{-- In work, do what you enjoy. --}}
@if($this->notifications->where('read_at', null)->count() > 0) {{ $this->notifications->where('read_at', null)->count() }} @endif
@if ($this->notifications->isEmpty())
{{ __('No new notifications') }}
@else @foreach ($this->notifications as $notification)
{{ $notification->title }} {{ $notification->body }}

{{ $notification->created_at->diffForHumans() }}

@endforeach @endif