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);
}
}