Adding extra middleware on page apis

parent eea48e33
...@@ -7,7 +7,7 @@ $router->bind('page', function ($id) { ...@@ -7,7 +7,7 @@ $router->bind('page', function ($id) {
return app(\Modules\Page\Repositories\PageRepository::class)->find($id); return app(\Modules\Page\Repositories\PageRepository::class)->find($id);
}); });
$router->group(['prefix' => '/page'], function (Router $router) { $router->group(['prefix' => '/page', 'middleware' => ['api.token', 'auth.admin']], function (Router $router) {
$router->get('pages', [ $router->get('pages', [
'as' => 'api.page.page.index', 'as' => 'api.page.page.index',
'uses' => 'PageController@index', 'uses' => 'PageController@index',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment