@extends('layouts.admin') @section('content') Notification Details Edit Back 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
{{ $notification->user->name }} ({{ $notification->user->email }})
{{ $notification->type ?? '—' }}
{{ $notification->sent_at ? $notification->sent_at->format('M d, Y H:i') : 'Not sent yet' }}
{{ $notification->title }}
{{ $notification->message }}