This commit is contained in:
2024-07-09 16:08:50 +03:00
parent 2c199f1ce1
commit e588866a92
13 changed files with 219 additions and 186 deletions

View File

@ -8,12 +8,17 @@ use app\models\User;
use http\Encoding\Stream\Debrotli;
use Illuminate\Contracts\View\View;
use Illuminate\Support\Facades\DB;
use Illuminate\Database\Eloquent\SoftDeletes;
class UserController {
public function actionCreate(): void
{
Debug::dd("create");
//return User::create(['username'=>$username,'email'=>$email,'password'=>$password]);
require "app/views/userCreate.php";
}
public function actionAdd(): void
{
User::create($_REQUEST);
}
public function actionQuestionCount($user_id)
@ -23,7 +28,6 @@ class UserController {
public function actionIndex(): void
{
Debug::dd("list");
foreach (User::all() as $user)
{
echo $user->username . "<br>";
@ -32,12 +36,36 @@ class UserController {
public function actionView($id): void
{
Debug::dd($id);
echo User::where('id', '=', $id)->get();
// $user = User::where('id', '=', 13)->get();
echo User::where('id', '=', $id)->first() . "<br><br>";
// echo $user->username . "<br>";
// echo $user->email . "<br>";
// echo $user->created_at . "<br>";
$user = User::find($id);
echo $user->id . "<br>";
echo $user->username . "<br>";
echo $user->email . "<br>";
echo $user->password . "<br>";
echo $user->created_at . "<br>";
echo $user->updated_at . "<br>";
}
public function actionUpdate(): void
{
Debug::prn("Update");
require "app/views/userUpdate.php";
}
public function actionEdit(): void
{
$user = User::find($_REQUEST['id']);
$user->username = $_REQUEST['username'];
$user->email = $_REQUEST['email'];
$user->password = $_REQUEST['password'];
$user->save();
}
public function actionDelete($id): void
{
User::find($id)->delete();
}
}