@extends('layouts.admin') @section('title', 'Notifications') @section('content')
| Message | Date | Status | Action |
|---|---|---|---|
| {{ $notification->message }} | {{ $notification->created_at->format('d M Y H:i') }} | {{ $notification->is_read ? 'Read' : 'Unread' }} | @if(!$notification->is_read) Mark Read @else Read @endif |