Fixed some bugs and added a proper home page

This commit is contained in:
Dan Brown
2015-08-16 20:11:21 +01:00
parent 5d9d096028
commit 732f3a9986
13 changed files with 94 additions and 33 deletions

View File

@ -79,12 +79,9 @@ Route::group(['middleware' => 'auth'], function() {
// Search
Route::get('/pages/search/all', 'PageController@searchAll');
Route::get('/', function () {
return view('home');
});
Route::get('/home', function () {
return view('home');
});
// Other Pages
Route::get('/', 'HomeController@index');
Route::get('/home', 'HomeController@index');
});