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