Laravel Class 'App\Modules\ServiceProvider' not found?

前端 未结 8 1445
暗喜
暗喜 2021-01-01 19:39

Hello Friends I am new in Laravel framework.

i create modules directory in app folder.

then i also create ServiceProvider.php file in modules directory.

8条回答
  •  Happy的楠姐
    2021-01-01 20:24

    Add this to composer.json autoload section:

    "psr-4": {
        "App\\": "app/"
    }
    

    and then composer dump-autoload

提交回复
热议问题