@extends('layouts.app')
@section('title', 'Notifications')
@section('page-title', 'Notifications')
@section('content')
@if($unreadCount > 0)
@endif
@forelse($notifications as $n)
{{ $n->title }}
{{ $n->body }}
{{ $n->created_at->diffForHumans() }}
@if(! $n->read_at)
@endif
@empty
No notifications yet.
@endforelse
@if($notifications->hasPages())
{{ $notifications->links() }}
@endif
@endsection