@extends('admin.layouts.app') @section('title', 'Notifications') @section('content')
@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('admin.tickets.show', $ticketId) : '#'; @endphp @endforeach
{{ $notifications->links() }}
@else
No notifications yet

When you receive notifications, they will appear here.

@endif
@endsection