タイトルのように。職人から逃げようとしている
php artisan command:make NameOfCommand
しかし、私が見るのは
There are no commands defined in the "command" namespace.
これは何ですか?
ドキュメントが言うように(現在のバージョンは5.2です):
コマンドが完了したら、使用できるようにArtisanに登録する必要があります。これはapp/Console/Kernel.phpファイル内で行われます。
kernel.phpファイルに追加する必要があります:protected $commands = [ Commands\NameOfCommand::class ];
(参照: https://laravel.com/docs/5.2/artisan#registering-commands )
In laravel 5.2 use php artisan make:console NameOfCommand