@extends('layouts.app') @section('title', 'Notifications') @section('content')
{{ $notification->data['message'] ?? 'New notification' }}
@if(isset($notification->data['appointment_id']))Patient: {{ $notification->data['patient_name'] ?? 'N/A' }}
Type: {{ $notification->data['consultation_type'] ?? 'N/A' }}
@if(isset($notification->data['appointment_date']))Date: {{ \Carbon\Carbon::parse($notification->data['appointment_date'])->format('M d, Y H:i') }}
@endif{{ $notification->created_at->diffForHumans() }}
No notifications found.