嘿,这是我第一次在线部署我的工作。 我有一些路由在本机上可以正常使用,但是当我在服务器上时出现此错误。
查看未找到[frontoffice.Sondage.list_sondage]
我正在使用模块的l5模块化包装
类似于:
app/
└── Modules/
└── Poll/
├── Controllers/
│ └── PollController.php
├── Models/
│ └── Poll.php
├── Views/
| └── frontoffice
│ └── Sondage
| └── list_sondage.blade.php
├── Translations/
│ └── en/
│ └── example.php
├── routes
│ ├── api.php
│ └── web.php
└── helper.php
我要返回此视图:
return view('Poll::frontoffice.Sondage.list_sondage',compact('resultats_groupe','config'));
此错误来自何处?