mirror of
https://github.com/BookStackApp/BookStack.git
synced 2025-05-31 04:55:50 +08:00
Fixed some bugs and added a proper home page
This commit is contained in:
@ -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');
|
||||
|
||||
|
||||
});
|
||||
|
Reference in New Issue
Block a user