File: D:/HostingSpaces/SBogers10/beat-the-barn.komma.nl/app/Meals/Kms/MealController.php
<?php
namespace App\Meals\Kms;
use App\Meals\Models\MealTranslation;
use Komma\KMS\Core\SectionController;
use App\Meals\Models\Meal;
final class MealController extends SectionController
{
protected string $slug = "meals";
protected string $classModelName = Meal::class;
protected ?string $forTranslationModelName = MealTranslation::class;
public function __construct()
{
$mealSection = new MealSection($this->slug);
parent::__construct($mealSection);
}
}