LoginSignup
1
1

More than 5 years have passed since last update.

【Laravel】Controllersと同じ階層に他のControllersディレクトリを追加したいときに注意すること

Posted at

前にも似たような記事を書いてた
https://qiita.com/shosho/items/e48df37b9ff9b73e1914

APIControllersディレクトリを作成

Screen Shot 2018-05-08 at 14.32.05.png

これで単純に api.php 側でuse、 APIController側で名前空間を設定したらOK

Screen Shot 2018-05-08 at 14.34.45.png

Screen Shot 2018-05-08 at 14.35.11.png

とはいかない。

Screen Shot 2018-05-08 at 14.36.49.png

解決法

RouteServiceProvider.php で名前空間が指定されてしまっているので

Screen Shot 2018-05-08 at 14.37.46.png

Screen Shot 2018-05-08 at 14.37.59.png

そこをコメントアウトする必要がある。

Screen Shot 2018-05-08 at 14.39.38.png

Screen Shot 2018-05-08 at 14.39.47.png

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1