From ec47ea5d5e1d639b262e21ed6f8fd18e89108139 Mon Sep 17 00:00:00 2001 From: Djery-Tom Date: Fri, 21 Aug 2020 15:00:07 +0100 Subject: [PATCH] + Update notifications routes --- routes/web.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/routes/web.php b/routes/web.php index 3272c17..66ad6b5 100755 --- a/routes/web.php +++ b/routes/web.php @@ -138,4 +138,8 @@ $router->post('saveAgent', 'NotificationServiceController@post'); }); + $router->group(['prefix'=>'/notifications' , 'middleware' => 'auth:api'], function () use ($router) { + $router->post('', 'NotificationServiceController@post'); + }); + });