routes.php文件创建路由参数由{}包起来,不需要$ Route::get('/stu/{as}','StuController@show'); 在相对应的Controller创建funciton public function show($asd){//实现方法的参数需要$ //查询Stu这个model类可以用find带上参数 //不能忘记引入相对应的model use App\Stu; $res=Stu::all()->find($asd); return view('stu/stu'…
public function index() { //return Member::getMember();//这是调用模型的方法 return view('lpc',[ 'age'=>18, 'name'=>'PengchongLee', ]); } public function test()//一个方法得设置一个路由 { //echo 1;//测试路由 //新增数据 //$data = DB::insert('insert into test(name,age) values(?,?)…