File: D:/HostingSpaces/SBogers10/momsecurity.komma.nl/app/Questions/Kms/QuestionController.php
<?php
namespace App\Questions\Kms;
use App\Questions\Models\Question;
use App\Questions\Models\QuestionTranslation;
use Komma\KMS\Core\SectionController;
final class QuestionController extends SectionController
{
protected string $slug = "questions";
protected string $classModelName = Question::class;
protected ?string $forTranslationModelName = QuestionTranslation::class;
function __construct()
{
$questionSection = new QuestionSection($this->slug);
parent::__construct($questionSection);
}
}