If you want route to just show a certain view, don't create a Controller method, just use Route::view()
function.
1// Instead of this 2Route::get('about', 'TextsController@about'); 3// And this 4class TextsController extends Controller 5{ 6 public function about() 7 { 8 return view('texts.about'); 9 }10}11// Do this12Route::view('about', 'texts.about');