@extends('dashboard.user.layouts.app') @section('content')

{{ $title }}

{{-- ── STATUS + DATE STRIP ── --}}
{{-- Unread indicator dot --}} @if (!$notification->read) @endif @if ($notification->read) Read @else Unread @endif
{{ $notification->created_at->diffForHumans() }}
{{-- ── TITLE ── --}}
{{ $notification->title }}
{{-- ── MESSAGE ── --}}

Message

{{ $notification->description }}

{{-- ── ACTION ── --}}
@endsection