File: D:/HostingSpaces/SBogers10/ehbo.today/app/KommaApp/ArchivedCourses/Kms/ArchivedCourseController.php
<?php
/**
*
* @author Komma <info@komma.pro>
* @copyright (c) 2012-2016, Komma
*/
namespace App\KommaApp\ArchivedCourses\Kms;
use App\KommaApp\Kms\Core\SectionController;
use App\KommaApp\ArchivedCourses\Models\ArchivedCourse;
class ArchivedCourseController extends SectionController
{
protected $slug = "archivedcourses";
protected $forModelName = ArchivedCourse::class;
function __construct(ArchivedCourseSection $section)
{
parent::__construct($section);
}
}