@lang('Notifications') @lang('Below is the list of notifications you have received on :app', [ 'app' => config('app.name') ])
@if(auth()->user()->unreadNotifications()->count())
@endif
@if($notifications->count()) @foreach($notifications as $notification) @endforeach @else @endif
@lang('Type') @lang('Received at')
@if(!$notification->read_at) @endif
{{ $notification->created_at->diffForHumans() }} {{ $notification->created_at->format(__('Y-m-d g:i A')) }}
@if(!$notification->read_at) @endif
@lang('No notifications received yet!')
{{ $notifications->links('pagination::tailwind') }}