路线方法给出错误 - Laravel5

时间:2016-03-07 22:26:41

标签: php laravel-5.2

使用Route :: Post()时出现奇怪的错误。当我尝试访问URL(http://localhost/project/public/testnew)时,我收到错误而不是在屏幕上显示“Hello”。

这是来自routes.php的代码 -

Route::post('/testnew', function(){
  return "hello";
});

这就是我得到的错误 -

enter image description here

有人帮忙

1 个答案:

答案 0 :(得分:0)

删除斜杠。

Route::post('testnew', function(){
  return "hello";
});