If you want route to just show a certain view, don't create a Controller method, just use Route::view()
function.
// Instead of thisRoute::get('about', 'TextsController@about'); // And thisclass TextsController extends Controller{ public function about() { return view('texts.about'); }} // Do thisRoute::view('about', 'texts.about');