diff options
author | Mateja <mail@matejamaric.com> | 2020-11-01 18:38:02 +0100 |
---|---|---|
committer | Mateja <mail@matejamaric.com> | 2020-11-01 18:38:02 +0100 |
commit | 8fee1d776d8f2f538968b1d761dfbbfd3e52ae27 (patch) | |
tree | 7c958ac82840a278236ec6dda81131e38a52a42e /routes | |
parent | 0ce5bbcc443b9da12e5233a481f2ef15017ee891 (diff) | |
download | yota-laravel-8fee1d776d8f2f538968b1d761dfbbfd3e52ae27.tar.gz yota-laravel-8fee1d776d8f2f538968b1d761dfbbfd3e52ae27.zip |
Editing signs buggy...
Diffstat (limited to 'routes')
-rw-r--r-- | routes/web.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/routes/web.php b/routes/web.php index 1d04dbf..1f9f47f 100644 --- a/routes/web.php +++ b/routes/web.php @@ -46,6 +46,11 @@ Route::get('/special-calls/add', [SpecialCallsController::class, 'add'])->name(' Route::post('/special-calls/add', [SpecialCallsController::class, 'addForm'])->name('addSignForm') ->middleware(['auth']); +Route::get('/special-calls/edit/{id}', [SpecialCallsController::class, 'edit'])->name('edit') + ->middleware(['auth']); +Route::post('/special-calls/edit/{id}', [SpecialCallsController::class, 'editForm'])->name('editForm') + ->middleware(['auth']); + Route::get('/special-calls/reservations', [SpecialCallsController::class, 'reservations'])->name('reservations') ->middleware(['auth']); |