File: D:/HostingSpaces/SBogers10/helder.komma.pro/app/Komma/Pages/Kms/PageController.php
<?php
namespace App\Komma\Pages\Kms;
/**
* @author Komma <info@komma.pro>
* @copyright (c) 2012-2016, Komma
*/
use App\Komma\Kms\Core\SectionController;
use App\Komma\Kms\Core\Sections\SectionService;
use App\Komma\Pages\Models\Page;
class PageController extends SectionController
{
protected $slug = "pages";
protected $forModelName = Page::class;
/**
* Constructor
* @param PageSection $section
*/
public function __construct(PageSection $section)
{
parent::__construct($section);
}
}