@extends(auth()->user()->isAdmin() ? 'layouts.admin' : 'layouts.user') @section('page-title', 'Notifications') @section('content')

Notifications

@csrf
@forelse ($notifications as $n)
{{ $n->title }}
{{ $n->created_at->format('d M Y H:i') }}
{{ $n->message }}
@empty
No notifications
@endforelse
@endsection