@extends('frontend.dashboard.dashboard-app') @section('dashboard_contents')
@csrf
@if($notifications->count() > 0)
@foreach($notifications as $notification) @php $data = $notification->data; $isUnread = is_null($notification->read_at); $ticketId = $data['ticket_id'] ?? ''; $url = $ticketId ? route('dashboard.tickets.show', $ticketId) : '#'; @endphp @endforeach
{{ $notifications->links() }}
@else
No notifications yet

When you receive notifications, they will appear here.

@endif
@endsection