5
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

Could not open input file: artisan解決方法

Last updated at Posted at 2021-03-03

##エラー:Could not open input file: artisan
Laravelでサービスプロバイダを作成する為に、

$ php artisan make:provider HelloServiceProvider

上記のコマンドをターミナルで叩くと、

Could not open input file: artisan

というエラーが発生します。

このコマンドは、arisanファイルのあるディレクトリにいないと実行できない為、
エラーが発生するということは、コマンドを実行するカレントディレクトリが間違っている可能性があります。

現在どこのディレクトリで実行しているか確認しましょう。
スクリーンショット 2021-03-03 20.59.29.png
こちらの場合だと、

$cd docker-laravel-demo/backend

これで、artisanファイルのあるbackendディレクトリまで移動し、

$ php artisan make:provider HelloServiceProvider

サービスプロバイダを作成するコマンドを叩くと、

Controller created successfully.

こちらが表示され、Providersディレクトリ内にHelloServiceProviderファイルが作成されます。

5
4
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
5
4

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?