routes.php第20行中的FatalErrorException:语法错误,意外'get'(T_STRING)

时间:2015-12-08 11:02:50

标签: laravel-5.1

我有新的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');

如何解决错误?

1 个答案:

答案 0 :(得分:1)

您的所有路线都缺少Route :: facade。 如下例所示纠正它们:

<?php
Route::get('/', function() {
   return view('vue1')
});
Route::post('users', 'UsersController@postInfos');