File: D:/HostingSpaces/SBogers10/ehboledensysteem.komma.pro/app/KommaApp/Courses/Kms/CourseController.php
<?php
/**
*
* @author Komma <info@komma.pro>
* @copyright (c) 2012-2016, Komma
*/
namespace App\KommaApp\Courses\Kms;
use App\KommaApp\Kms\Core\SectionController;
use App\KommaApp\Courses\Models\Course;
class CourseController extends SectionController
{
protected $slug = "courses";
protected $forModelName = Course::class;
function __construct(CourseSection $section)
{
parent::__construct($section);
}
}