@php $notificationData = json_decode($notification->data, true); @endphp @extends('user::layouts.backend-master') @section('breadcrumb_title', 'View Notification') @section('content')

Notification Details

Back to Notifications
Title {{ $notificationData['title'] ?? 'N/A' }}
Message {{ $notificationData['message'] ?? 'N/A' }}
Action {{ $notificationData['action'] ?? 'N/A' }}
Author {{ $notificationData['author'] ?? 'N/A' }}
Read At {{ $notification->read_at ? customDateTimeFormate($notification->read_at) : 'Unread' }}
Created At {{ customDateTimeFormate($notification->created_at) }}
@endsection