Tidy up admin cp article related views

This commit is contained in:
Jonny Barnes 2017-03-02 18:15:44 +00:00
parent abeb5c68f7
commit 7c11b08feb
10 changed files with 14 additions and 14 deletions

View file

@ -41,7 +41,7 @@ Route::group(['domain' => config('url.longurl')], function () {
});
//Articles
Route::group(['prefix' => 'blog'], function () {
Route::group(['prefix' => 'articles'], function () {
Route::get('/new', 'ArticlesController@create');
Route::get('/edit', 'ArticlesController@index');
Route::get('/edit/{id}', 'ArticlesController@edit');
@ -52,7 +52,7 @@ Route::group(['domain' => config('url.longurl')], function () {
});
//Notes
Route::group(['prefix' => 'note'], function () {
Route::group(['prefix' => 'notes'], function () {
Route::get('/edit', 'NotesController@index');
Route::get('/new', 'NotesController@create');
Route::get('/edit/{id}', 'NotesController@edit');