<?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;
class SiteController extends SectionController
{
protected $slug = 'sites';
protected $forModelName = Site::class;
public function __construct(SiteSection $section)
{
parent::__construct($section);
}
}