@extends('layouts.app') @section('title','Notifications') @section('content')
@forelse($notifications as $n)@empty@endforelse
TitleMessageTimeStatus
{{ $n->title }}{{ $n->message }}{{ $n->created_at->diffForHumans() }}@if($n->is_read)Read@elseNew@endif
@csrf @method('DELETE')
No notifications
@if($notifications->hasPages())@endif
@endsection