Вы можете добиться того же по приведенному ниже коду -
Маршрут -
Route::get('/information/{id}','InformationController@show');
Функция контроллера -
public function show($id,Request $request)
{
$data = array();
$static_page_names = ['static1','static2']; //array that contains all static pages name
if(in_array($id, $static_page_names)){
//static page code here
return view('/pages/static_page_template',$data);
}else{
//dynamic code here
return view('/pages/dynamic_page_template',$data);
}
}
Вы можете получить доступ к странице из браузера, как-
website-url/information/id or website/information/static-page-name
Может быть, это поможет вам