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