Feat: Универсальный компонент Searchable Select

 TomSelect библиотека (15KB vs 100KB у Select2)
 Blade компонент x-searchable-select
 API endpoint /api/organizations/search
 Поиск по названию и ИНН
 AJAX загрузка данных
 Используется в create.blade.php для групп
 Модульная архитектура - можно использовать для других полей

Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
This commit is contained in:
mirivlad
2026-03-30 10:36:02 +08:00
co-authored by Qwen-Coder
parent f198afd8a0
commit 4503c217eb
5 changed files with 100 additions and 10 deletions
@@ -47,9 +47,7 @@ class GroupUserController extends Controller
{
Gate::authorize('create', Group::class);
$organizations = Organization::pluck('name', 'id');
return view('admin.groups.create', compact('organizations'));
return view('admin.groups.create');
}
public function store(Request $request)