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'); }); });