Module Console Commands
Your module may contain console commands. You can generate these commands manually, or with the following helper:
php artisan module:make-command CreatePostCommand Blog
This will create a CreatePostCommand
inside the Blog module. By default this will be Modules/Blog/Console/CreatePostCommand
.
Please refer to the laravel documentation on artisan commands to learn all about them.
Registering the command
You can register the command with the laravel method called commands
that is available inside a service provider class.
$this->commands([
\Modules\Blog\Console\CreatePostCommand::class,
]);
You can now access your command via php artisan
in the console.