1👍
✅
You are not returning a value. You’re just performing the select.
Try returning it:
return response()->json([
'data' => DB::table('fjl_groups')->select('id as value', 'nom as text')->get()
]);
Source:stackexchange.com