mirror of
https://gitlab.com/TheGamecraft/c-cms.git
synced 2026-04-21 02:39:10 -04:00
begin of schedule editor
This commit is contained in:
23
app/Http/Controllers/ScheduleEditorController.php
Normal file
23
app/Http/Controllers/ScheduleEditorController.php
Normal file
@@ -0,0 +1,23 @@
|
||||
<?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');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user