Show initial locations list
This commit is contained in:
parent
4dfba7b3b1
commit
02f6bf428e
3 changed files with 92 additions and 0 deletions
|
@ -199,6 +199,20 @@ class AdminRoutes {
|
|||
|
||||
});
|
||||
|
||||
// Server Routes
|
||||
$router->group([
|
||||
'prefix' => 'admin/locations',
|
||||
'middleware' => [
|
||||
'auth',
|
||||
'admin'
|
||||
]
|
||||
], function () use ($router) {
|
||||
$router->get('/', [
|
||||
'as' => 'admin.locations',
|
||||
'uses' => 'Admin\LocationsController@getIndex'
|
||||
]);
|
||||
});
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Reference in a new issue