{{-- ===================================================== Etebarit - by Gisoo Web Solutions ------------------------------------------------------ Gisoo.net ------------------------------------------------------ Copyright (c) 2026 Gisoo Web Solutions ===================================================== This code is protected by copyright ===================================================== File: index.blade.php ------------------------------------------------------ Use: The user's notifications page: filter tabs, the list (each row marks itself read and follows its link), and "mark all read". ===================================================== --}} @extends('layouts.user') @section('title', __('notifications.user.title')) @section('breadcrumb') @endsection @section('page')

{{ __('notifications.user.title') }}

{{ __('notifications.user.subtitle') }}

@if ($unread > 0)
@csrf
@endif
{{-- Filter tabs --}}
@foreach (__('notifications.user.filters') as $key => $label) $filter === $key, 'text-ink-muted hover:text-primary-600' => $filter !== $key, ])>{{ $label }} @endforeach
@forelse ($items as $item)
@csrf
@empty

{{ __('notifications.user.empty') }}

@endforelse
@if ($items->hasPages())
{{ $items->links() }}
@endif @endsection