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