From 8fee1d776d8f2f538968b1d761dfbbfd3e52ae27 Mon Sep 17 00:00:00 2001
From: Mateja <mail@matejamaric.com>
Date: Sun, 1 Nov 2020 18:38:02 +0100
Subject: Editing signs buggy...

---
 routes/web.php | 5 +++++
 1 file changed, 5 insertions(+)

(limited to 'routes')

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']);
-- 
cgit v1.2.3