Skip to main content

Console Commands Configuration (config/commands.php)

This file registers all custom CLI commands available to your application.

📦 Example​

return [
\App\Console\Commands\MyCommand::class,
];

These classes must extend \Beauty\Console\Command and implement the handle() method.

Once registered, commands are available via:

./beauty help

Core commands from the framework are auto-registered. You only need to register your own.