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

@ -5,7 +5,7 @@ namespace app\controllers;
use app\models\Answer;
use app\models\Upvote;
class Answers {
class AnswerController {
public function actionAddAnswer($answer,$question_id,$user_id)
{
return Answer::create(['answer'=>$answer,'question_id'=>$question_id,'user_id'=>$user_id]);

View File

@ -3,7 +3,7 @@ namespace app\controllers;
use app\models\Question;
class Questions{
class QuestionController{
public function actionCreateQuestion($question,$user_id)
{
return Question::create(['question'=>$question,'user_id'=>$user_id]);
@ -11,7 +11,7 @@ class Questions{
public function actionGetQuestionsWithAnswers()
{
return Question::with('Answers')->get()->toArray();
return Question::with('AnswerController')->get()->toArray();
}
public function actionGetQuestionsWithUsers()

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();
}
}