Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想将 laravel 8 的主页设置为 laravel 7x 的主页。为此,我编写了以下路线:
Route::view('/', 'welcome', [PollController::class, 'element']);
我只是一直看到以下页面:
Route::get('/', [PollController::class, 'element'], function () { return view('welcome'); });
resources/views/welcome.blade.php我重命名了文件resources/views/welcome.blade.php并且它有效
resources/views/welcome.blade.php