按照教程修改了routes.php就会报这个错,求助

修改了
Route::get('/', 'WelcomeController@index');

就报了错
Symfony \ Component \ Debug \ Exception \ FatalErrorException

Call to undefined method Illuminate\View\Environment::maker()

QQ截图20140912182105.jpg


改回
Route::get('/', function()
{
return View::make('hello');
});
就又正常了
已邀请:

FiveSay - 成武

赞同来自:

你把 View::make(); 写成 View::maker(); 了,写代码要细心。

要回复问题请先登录注册