+ Update notifications routes

This commit is contained in:
Djery-Tom 2020-08-21 15:18:47 +01:00
parent ec47ea5d5e
commit 1c3f86fd4d
1 changed files with 1 additions and 0 deletions

View File

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