File: D:/HostingSpaces/SBogers10/ste.komma.pro/app/MethodSteps/Kms/MethodStepController.php
<?php
namespace App\MethodSteps\Kms;
use App\MethodSteps\Models\MethodStep;
use App\MethodSteps\Models\MethodStepTranslation;
use Komma\KMS\Core\SectionController;
final class MethodStepController extends SectionController
{
protected $slug = "method_steps";
protected $classModelName = MethodStep::class;
protected $forTranslationModelName = MethodStepTranslation::class;
protected $sortable = true;
function __construct()
{
$methodStepSection = new MethodStepSection($this->slug);
parent::__construct($methodStepSection);
}
}