From eb7a5c7894d8c9467d004d79a94f919a3e16ab11 Mon Sep 17 00:00:00 2001 From: Dayamond Date: Tue, 14 Oct 2025 22:37:42 +0200 Subject: [PATCH] create user --- app/Http/Controllers/UserController.php | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 app/Http/Controllers/UserController.php diff --git a/app/Http/Controllers/UserController.php b/app/Http/Controllers/UserController.php new file mode 100644 index 0000000..a13cd45 --- /dev/null +++ b/app/Http/Controllers/UserController.php @@ -0,0 +1,18 @@ + $request["name"], + "email" => $request["email"], + "password" => Hash::make($request["password"]), + ]); + } +}