MicroFrameWork/app/controllers/UserController.php

43 lines
1023 B
PHP
Raw Normal View History

2024-07-03 14:41:15 +03:00
<?php
2024-07-05 13:49:04 +03:00
namespace app\controllers;
2024-07-08 16:20:25 +03:00
use app\helpers\Debug;
2024-07-05 13:49:04 +03:00
use app\models\Question;
use app\models\User;
2024-07-08 16:20:25 +03:00
use http\Encoding\Stream\Debrotli;
2024-07-05 13:49:04 +03:00
use Illuminate\Contracts\View\View;
use Illuminate\Support\Facades\DB;
2024-07-03 14:41:15 +03:00
2024-07-08 16:20:25 +03:00
class UserController {
public function actionCreate(): void
2024-07-03 14:41:15 +03:00
{
2024-07-08 16:20:25 +03:00
Debug::dd("create");
//return User::create(['username'=>$username,'email'=>$email,'password'=>$password]);
2024-07-03 14:41:15 +03:00
}
2024-07-03 15:15:59 +03:00
public function actionQuestionCount($user_id)
2024-07-03 14:41:15 +03:00
{
return Question::where('user_id', $user_id)->count();
}
2024-07-05 13:49:04 +03:00
2024-07-08 16:20:25 +03:00
public function actionIndex(): void
2024-07-05 13:49:04 +03:00
{
2024-07-08 16:20:25 +03:00
Debug::dd("list");
2024-07-05 13:49:04 +03:00
foreach (User::all() as $user)
{
echo $user->username . "<br>";
}
}
2024-07-08 16:20:25 +03:00
public function actionView($id): void
2024-07-05 13:49:04 +03:00
{
2024-07-08 16:20:25 +03:00
Debug::dd($id);
echo User::where('id', '=', $id)->get();
2024-07-05 13:49:04 +03:00
// $user = User::where('id', '=', 13)->get();
// echo $user->username . "<br>";
// echo $user->email . "<br>";
// echo $user->created_at . "<br>";
}
2024-07-03 14:41:15 +03:00
}