@extends('layouts.app') @section('title', 'Notifications') @section('content')
{{ $notification->data['message'] ?? 'New notification' }}
@if(isset($notification->data['type']) && $notification->data['type'] === 'doctor_registration')Doctor: {{ $notification->data['doctor_name'] ?? 'N/A' }}
Practice Number: {{ $notification->data['practice_number'] ?? 'N/A' }}
Prescription #: {{ $notification->data['prescription_number'] ?? 'N/A' }}
Patient: {{ $notification->data['patient_name'] ?? 'N/A' }}
Doctor: {{ $notification->data['doctor_name'] ?? 'N/A' }}
{{ $notification->created_at->diffForHumans() }}
No notifications found.