@extends('frontend.user.layouts.dash') @section('title', lang('Notifications', 'user') . ' (' . $unreadNotificationsCount . ')') @section('content')
@forelse ($notifications as $notification) @if ($notification->link) @else
@endif
{{ $notification->title }}

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

@if (!$notification->status)
@endif @if ($notification->link)
@else
@endif @empty @include('frontend.user.includes.empty') @endforelse
{{ $notifications->links() }} @endsection