@extends('layouts.app') @section('title','Notifications') @section('breadcrumb')@endsection @section('content')
@forelse($notifications as $n)
{{ $n->title }}
{{ $n->message }}
{{ $n->created_at->diffForHumans() }}
@if(!$n->is_read)
@csrf
@endif
@empty

No notifications

@endforelse {{ $notifications->links() }}
@endsection