File: D:/HostingSpaces/netwerkbrabant/netwerkbrabant.nl/app/KommaApp/Companies/Kms/CompanyController.php
<?php
namespace App\KommaApp\Companies\Kms;
/**
* @author Komma <info@komma.pro>
* @copyright (c) 2012-2016, Komma
*/
use App\KommaApp\Forms\Models\Request;
use App\KommaApp\Kms\Core\SectionController;
use App\KommaApp\Kms\Core\Tree\TreeService;
use App\KommaApp\Companies\Models\Company;
class CompanyController extends SectionController
{
protected $slug = "companies";
protected $forModelName = Company::class;
/**
* Constructor
* @param CompanySection $section
*/
public function __construct(CompanySection $section)
{
parent::__construct($section);
}
}