Fix issue accessing /admin

This commit is contained in:
Jonny Barnes 2017-03-03 14:56:43 +00:00
parent c13a473b79
commit 893cfe978b
3 changed files with 7 additions and 3 deletions

View file

@ -30,7 +30,7 @@ Route::group(['domain' => config('url.longurl')], function () {
'namespace' => 'Admin',
'prefix' => 'admin',
], function () {
Route::get('/', 'HomeConrtoller@welcome');
Route::get('/', 'HomeController@welcome');
//Articles
Route::group(['prefix' => 'blog'], function () {