@extends('layouts.user') @section('title', 'Notifications') @section('content')
@include('user.sidebar')

🔔 Notifications

Stay updated on your bookings and account activity

View Website
@if (session('success'))
{{ session('success') }}
@endif @if($notifications->count() > 0)
@foreach($notifications as $notification)
{{ $notification->data['title'] ?? 'Notification' }}
{{ $notification->data['message'] ?? '' }}
{{ $notification->created_at->diffForHumans() }}
@if($notification->read_at) Read @else New @endif
@csrf
@endforeach
{{ $notifications->links() }}
@else
🔔

No notifications yet

You'll see updates about your bookings, payments, and account activity here.

@endif
@endsection