//能访问 Route::get('/', function () { return view('welcome'); }); //不能访问,404错误 Route::get('first', function(){ return 'hello, world'; });
相关分类