@extends('layouts.admin') @section('content')

Notification Details

User

{{ $notification->user->name }} ({{ $notification->user->email }})

Type

{{ $notification->type ?? '—' }}

Status

{{ ucfirst($notification->status) }}

Sent At

{{ $notification->sent_at ? $notification->sent_at->format('M d, Y H:i') : 'Not sent yet' }}

Title

{{ $notification->title }}

@if($notification->message)

Message

{{ $notification->message }}

@endif
@endsection