diff --git a/routes/web.php b/routes/web.php index f13c346..8367a71 100755 --- a/routes/web.php +++ b/routes/web.php @@ -155,7 +155,8 @@ $router->post('saveAgent', 'NotificationServiceController@post'); }); - $router->group(['prefix'=>'/notifications' , 'middleware' => 'auth:api'], function () use ($router) { +// $router->group(['prefix'=>'/notifications' , 'middleware' => 'auth:api'], function () use ($router) { + $router->group(['prefix'=>'/notifications'], function () use ($router) { $router->post('', 'NotificationServiceController@post'); $router->put('update/{id_notif}', 'NotificationServiceController@put'); });