【发布时间】:2018-04-10 18:12:31
【问题描述】:
我有新的 Laravel 5.1,我在关注 this guide 时得到了这个。
FatalErrorException in routes.php line 20:
syntax error, unexpected 'get' (T_STRING)
这是我的 routes.php:
<?php
get('/', function() {
return view('vue1')
});
get('article/{n}', 'ArticleController@show')->where('n', '[0-9]+');
get('article/{n}', function($n) {
return view('article')->with('numero', $n);
})->where('n', '[0-9]+');
get('users', 'UsersController@getInfos');
post('users', 'UsersController@postInfos');
我该如何解决这个错误?
【问题讨论】:
标签: laravel-5.1