@extends('user.layouts.app')
@section('title', 'الإشعارات')
@php
$notificationsStyle = $siteConfig['ui']['notifications_style'] ?? 'default';
@endphp
@section('css')
@if($notificationsStyle === 'minimal')
@else
@endif
@endsection
@section('content')
@if($notificationsStyle === 'minimal')
{{-- Minimal Style (Mega/Kaiali) --}}
@include('user.notifications.partials._minimal', [
'notifications' => $notifications,
'unreadCount' => $unreadCount,
'requiredNotifications' => $requiredNotifications
])
@else
{{-- Default Style --}}
@include('user.notifications.partials._default', [
'notifications' => $notifications,
'unreadCount' => $unreadCount,
'requiredNotifications' => $requiredNotifications
])
@endif
@endsection
@section('js')
@endsection