I am creating a laravel artisan command and work fine, but I want the output like the bellow image someone know the solution for this question? laravel artisan command output sample
I want add a badge like a native artisan command.
I am creating a laravel artisan command and work fine, but I want the output like the bellow image someone know the solution for this question? laravel artisan command output sample
I want add a badge like a native artisan command.
Copyright © 2021 Jogjafile Inc.
This isn't in the documentation, but the way the base Artisan commands do this is via
$this->components->info(...). This seems to work in a generated Console Command, viaextends Command:Running this command via
php artisan examplegenerates the following output:Screenshot:
Example in the Framework Codebase:
https://github.com/laravel/framework/blob/10.x/src/Illuminate/Console/GeneratorCommand.php#L194