Laravel psr-4 not autoloading

前端 未结 2 1493
萌比男神i
萌比男神i 2021-02-10 03:49

I have a Laravel project that works fine locally (Mavericks), but classes under psr-4 aren\'t loading on our stage server (CentOS). I\'m getting a Reflection \"class not found\"

2条回答
  •  庸人自扰
    2021-02-10 04:16

    Namespaces, folders and file names are case sensitive.

    If you have 'App\website' you must call it in php file 'App\website' is correct but 'App\Website' is wrong

提交回复
热议问题