Started react implementation

This commit is contained in:
Dan Brown
2015-08-12 18:48:26 +01:00
parent 9f95cbcbfb
commit 8d72883dcb
8 changed files with 89 additions and 25 deletions

View File

@ -78,7 +78,10 @@ Route::group(['middleware' => 'auth'], function() {
Route::get('/pages/search/all', 'PageController@searchAll');
Route::get('/', function () {
return view('base');
return view('home');
});
Route::get('/home', function () {
return view('home');
});