我有这个变量应该在我的网址中,但包含“。” (点)。对不起,我仍然是 laravel 的菜鸟。
预期结果是 localhost/myProject/public/var_name
错误提示未找到视图 [.sampleVariable] 。
我的线是
return view('/'.$create->var_name)->compact('anotherVar','anotherVar');
我的路线是
Route::get('{var_name}', 'MyController@index');