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

Notifications

@forelse($notifications as $notification)
@if(isset($notification->data['user_name']) && isset($notification->data['category'])) {{-- 🎫 Ticket Notification --}}
{{ $notification->data['user_name'] }} submitted a ticket ({{ $notification->data['category'] }})
@elseif(isset($notification->data['property_id'])) {{-- 🏠 Property Expired Notification --}}
Listing "{{ $notification->data['title'] }}" has expired. Renew or Edit
@else {{-- 📌 Unknown Notification Format --}}
{{ $notification->data['message'] ?? 'You have a new notification.' }}
@endif
{{ $notification->created_at->diffForHumans() }}
@empty

No notifications.

@endforelse
{{ $notifications->links() }}
@endsection