Feat: CRUD вопросов (начало)

 QuestionController (resource)
 QuestionPolicy
 Маршруты: /admin/tests/{test}/questions
 Blade-шаблоны: index, create (с JS для динамических ответов)
 Поддержка типов: single_choice, multiple_choice, input, matching
 Интеграция в show теста

Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
This commit is contained in:
mirivlad
2026-03-26 15:45:14 +08:00
co-authored by Qwen-Coder
parent fe61dcf4b7
commit a34c2e2812
7 changed files with 298 additions and 1 deletions
+66
View File
@@ -0,0 +1,66 @@
<?php
namespace App\Policies;
use App\Models\Question;
use App\Models\User;
use Illuminate\Auth\Access\Response;
class QuestionPolicy
{
/**
* Determine whether the user can view any models.
*/
public function viewAny(User $user): bool
{
return false;
}
/**
* Determine whether the user can view the model.
*/
public function view(User $user, Question $question): bool
{
return false;
}
/**
* Determine whether the user can create models.
*/
public function create(User $user): bool
{
return false;
}
/**
* Determine whether the user can update the model.
*/
public function update(User $user, Question $question): bool
{
return false;
}
/**
* Determine whether the user can delete the model.
*/
public function delete(User $user, Question $question): bool
{
return false;
}
/**
* Determine whether the user can restore the model.
*/
public function restore(User $user, Question $question): bool
{
return false;
}
/**
* Determine whether the user can permanently delete the model.
*/
public function forceDelete(User $user, Question $question): bool
{
return false;
}
}