File: D:/HostingSpaces/SBogers10/ste.komma.pro/app/SteLanguages/Kms/SteLanguageController.php
<?php
namespace App\SteLanguages\Kms;
/**
* @author Komma <info@komma.pro>
* @copyright (c) 2012-2016, Komma
*/
use App\SteLanguages\Models\SteLanguage;
use App\SteLanguages\Models\SteLanguageTranslation;
use Komma\KMS\Core\SectionController;
final class SteLanguageController extends SectionController
{
protected $sortable = true;
protected $slug = "ste_languages";
protected $classModelName = SteLanguage::class;
protected $forTranslationModelName = SteLanguageTranslation::class;
function __construct()
{
$steLanguageSection = new SteLanguageSection($this->slug);
parent::__construct($steLanguageSection);
}
}