HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers10/farmfun.komma.pro/app/Komma/CalendarNotes/Kms/CalendarNoteController.php
<?php

namespace App\Komma\CalendarNotes\Kms;

use App\Komma\CalendarNotes\Models\CalendarNote;
use App\Komma\Kms\Core\SectionController;

final class CalendarNoteController extends SectionController
{
    protected $slug = 'calendarnotes';

    protected $classModelName = CalendarNote::class;

    public function __construct()
    {
        $section = new CalendarNoteSection($this->slug);
        parent::__construct($section);
        $this->modelService = app(CalendarNoteService::class);
    }
}