File: D:/HostingSpaces/SBogers10/blije-gasten.komma.pro/app/Komma/Sites/Kms/SiteController.php
<?php
/**
*
* @author Komma <info@komma.pro>
* @copyright (c) 2012-2016, Komma
*/
namespace App\Komma\Sites\Kms;
use App\Komma\Kms\Core\SectionController;
use App\Komma\Sites\Models\Site;
final class SiteController extends SectionController
{
protected $slug = "sites";
protected $classModelName = Site::class;
function __construct()
{
$siteSection = new SiteSection($this->slug);
parent::__construct($siteSection);
}
}