Attivazione autenticazione LDAP con registrazione utenti in DB

This commit is contained in:
2022-07-07 12:22:19 +02:00
parent 9c65d864c9
commit 9bfb9a1903
11 changed files with 218 additions and 9 deletions

View File

@@ -54,6 +54,6 @@ class CategorieController extends Controller
public function apiList()
{
$categorie=DB::table('categories')->orderBy('cat_name')->get();
return json_encode($categorie);
return response()->json($categorie);
}
}