Show initial locations list

This commit is contained in:
Dane Everitt 2016-01-10 19:22:21 -05:00
parent 4dfba7b3b1
commit 02f6bf428e
3 changed files with 92 additions and 0 deletions

View file

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