Laravel-目标类别[PostsController]不存在

时间:2020-09-10 11:31:08

标签: php laravel

当我尝试访问此URL时收到此错误消息:

http://127.0.0.1:8000/posts/first-post

错误消息:

Illuminate \ Contracts \ Container \ BindingResolutionException 目标类[PostsController]不存在。 http://127.0.0.1:8000/posts/first-post

但是我可以看到存在PostsController类。

web.php enter image description here

PostsController.php enter image description here

有什么原因,我该如何解决?

注意:我正在使用laravel 8.0.3

1 个答案:

答案 0 :(得分:1)

您正在使用Laravel8。在全新安装的Laravel 8中,没有名称空间前缀会应用于您要加载到其中的路由的路由组。有关更多信息,您可以check here