From 1c3f86fd4de94257ee8f612844219f9b3c2fbf24 Mon Sep 17 00:00:00 2001 From: Djery-Tom Date: Fri, 21 Aug 2020 15:18:47 +0100 Subject: [PATCH] + Update notifications routes --- routes/web.php | 1 + 1 file changed, 1 insertion(+) diff --git a/routes/web.php b/routes/web.php index 66ad6b5..1cc5688 100755 --- a/routes/web.php +++ b/routes/web.php @@ -140,6 +140,7 @@ $router->group(['prefix'=>'/notifications' , 'middleware' => 'auth:api'], function () use ($router) { $router->post('', 'NotificationServiceController@post'); + $router->put('update/{id_notif}', 'NotificationServiceController@put'); }); });