@extends('admin.layouts.admin') @section('title','Notifications') @section('page-title','System Notifications') @section('content')
Recent Notifications
@forelse($notifications as $note)
{{ $note->title }}
{{ $note->message }}
{{ $note->created_at->diffForHumans() }}
@empty
No notifications
@endforelse
Actions
@csrf
@endsection