File: D:/HostingSpaces/SBogers10/reiskick.komma.nl/app/MustDos/Kms/MustDoController.php
<?php
namespace App\MustDos\Kms;
use App\MustDos\Models\MustDo;
use App\MustDos\Models\MustDoTranslation;
use Komma\KMS\Core\SectionController;
final class MustDoController extends SectionController
{
protected string $slug = "must_dos";
protected string $classModelName = MustDo::class;
protected ?string $forTranslationModelName = MustDoTranslation::class;
function __construct()
{
$hotelSection = new MustDoSection($this->slug);
parent::__construct($hotelSection);
}
}