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