我正在Laravel中建立一个名为Student的模块。
我使用Student文件夹内的routes.php
文件来编写与Student模块相关的路由。
当我只使用
Route::get('/main', function () { return view('welcome'); });
程序运行正常,没有错误。
但是当我使用
Route::get('/student', 'StudentController@student');
存在错误:Target class [StudentController] does not exist.