Feat: CRUD групп пользователей

 GroupUserController (index, show, edit, update, destroy)
 Маршруты: /admin/groups
 Blade шаблоны: index, show, edit
 Управление пользователями в группах
 Исправлена подсветка сайдбара (Курсы/Тесты)
 Ссылка на Группы в сайдбаре для Curator

Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
This commit is contained in:
mirivlad
2026-03-30 09:28:53 +08:00
co-authored by Qwen-Coder
parent 5da8134eae
commit d27b631c8f
7 changed files with 206 additions and 230 deletions
+2 -2
View File
@@ -25,7 +25,7 @@
</a>
</li>
<li class="nav-item">
<a class="nav-link {{ Str::startsWith($currentRoute, 'admin.courses') ? 'active' : '' }}" href="{{ route('admin.courses.index') }}">
<a class="nav-link {{ Str::startsWith($currentRoute, 'admin.courses.') && !Str::startsWith($currentRoute, 'admin.courses.tests') ? 'active' : '' }}" href="{{ route('admin.courses.index') }}">
<i class="bi bi-book"></i> Курсы
</a>
</li>
@@ -52,7 +52,7 @@
</a>
</li>
<li class="nav-item">
<a class="nav-link {{ Str::startsWith($currentRoute, 'admin.organizations.groups') ? 'active' : '' }}" href="{{ route('admin.organizations.index') }}">
<a class="nav-link {{ Str::startsWith($currentRoute, 'admin.groups') ? 'active' : '' }}" href="{{ route('admin.groups.index') }}">
<i class="bi bi-people-fill"></i> Группы
</a>
</li>