mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2025-12-11 06:46:47 +00:00
new forms added for courses
This commit is contained in:
@@ -65,6 +65,21 @@ Route::middleware([
|
||||
->name('form');
|
||||
});
|
||||
|
||||
/*
|
||||
* Course
|
||||
* */
|
||||
Route::middleware([
|
||||
'auth',
|
||||
])
|
||||
->as('course.')
|
||||
->prefix('/course')
|
||||
->group(function () {
|
||||
Route::get('/form/course/{course?}', \App\Http\Livewire\School\Form\CourseForm::class)
|
||||
->name('form.course');
|
||||
Route::get('/form/course-event/{courseEvent?}', \App\Http\Livewire\School\Form\CourseEventForm::class)
|
||||
->name('form.courseEvent');
|
||||
});
|
||||
|
||||
/*
|
||||
* Venue
|
||||
* */
|
||||
|
||||
Reference in New Issue
Block a user