File: D:/HostingSpaces/SBogers10/stafa.komma.pro/app/Komma/Departments/Kms/DepartmentController.php
<?php
namespace App\Komma\Departments\Kms;
/**
* @author Komma <info@komma.pro>
* @copyright (c) 2012-2016, Komma
*/
use App\Komma\Kms\Core\SectionController;
use App\Komma\Departments\Models\Department;
final class DepartmentController extends SectionController
{
protected $slug = "departments";
protected $forModelName = Department::class;
function __construct(DepartmentSection $section)
{
parent::__construct($section);
}
}