File: D:/HostingSpaces/netwerkbrabant/netwerkbrabant.nl/app/KommaApp/Regions/Kms/RegionController.php
<?php
namespace App\KommaApp\Regions\Kms;
/**
* @author Komma <info@komma.pro>
* @copyright (c) 2012-2016, Komma
*/
use App\KommaApp\Kms\Core\SectionController;
use App\KommaApp\Regions\Models\Region;
class RegionController extends SectionController
{
protected $slug = "regions";
protected $forModelName = Region::class;
function __construct(RegionSection $section)
{
parent::__construct($section);
}
}