Laravel 5.1 View not found

前端 未结 4 699
遇见更好的自我
遇见更好的自我 2021-01-18 13:47

this seems to be an issue that pops up every now and then within Laravel. I was writing a CRUD controller with a view to go with it, however upon testing I got the Inv

4条回答
  •  自闭症患者
    2021-01-18 14:30

    Remember that Linux is case sensitive!

    I had something like this:

    return view('MyView', $data);
    

    And it was working on my environment (Mac OS), but not on the deployment server (Ubuntu)!

提交回复
热议问题