Rename the index blade to home to match its class and the vue component

This commit is contained in:
Kevin MacMartin 2019-03-19 17:56:10 -04:00
parent 4de990d086
commit d36ae59e0c
2 changed files with 1 additions and 1 deletions

View file

@ -66,7 +66,7 @@ Route::get('/language/{lang}', function($lang) {
}); });
Route::get('/', function() { Route::get('/', function() {
return view('pages.index'); return view('pages.home');
}); });
Route::get('/blog', function() { Route::get('/blog', function() {