@extends('layouts.admin.admin') @section('title', 'Admin Notifications') @section('content') @push('styles') @endpush @include('partials.header') @include('partials.sidebar') Notifications Notifications Clear All Notifications @if ($user && $user->unreadNotifications->count()) @foreach ($user->unreadNotifications as $notification) {{ $notification->data['title'] ?? 'Notification' }}: {{ $notification->created_at->diffForHumans() }} {{ $notification->data['message'] ?? '' }} @if (!empty($notification->data['extra'])) View Details @endif @endforeach @endif @push('script') @endpush @stop