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