mirror of
https://gitlab.com/TheGamecraft/c-cms.git
synced 2026-04-21 10:49:10 -04:00
24 lines
509 B
PHP
24 lines
509 B
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
class ScheduleEditorController extends Controller
|
|
{
|
|
public function getCourse(int $id = null)
|
|
{
|
|
return view('admin.schedule.editor.course');
|
|
}
|
|
|
|
public function getCourseEmpty(int $niveau,int $periode)
|
|
{
|
|
return view('admin.schedule.editor.course',['periode' => $periode, 'niveau' => $niveau]);
|
|
}
|
|
|
|
public function getTemplate()
|
|
{
|
|
return view('admin.schedule.editor.template');
|
|
}
|
|
}
|