我正在创建一个laravel artisan命令,工作正常,但我希望输出像下面的图像有人知道这个问题的解决方案吗?laravel artisan command output sample我想添加一个徽章像一个本地工匠命令。
zzzyeukh1#
这不在文档中,但基本的Artisan命令是通过$this->components->info(...)完成的。这似乎可以通过extends Command在生成的控制台命令中工作:
$this->components->info(...)
extends Command
<?php namespace App\Commands; use Illuminate\Console\Command; class ExampleCommand extends Command { protected $signature = 'example'; public function handle() { $this->components->info('Hello World.'); } }
字符串通过php artisan example运行此命令会生成以下输出:Hello World.截图:
php artisan example
的数据框架代码库中的示例:https://github.com/laravel/framework/blob/10.x/src/Illuminate/Console/GeneratorCommand.php#L194
1条答案
按热度按时间zzzyeukh1#
这不在文档中,但基本的Artisan命令是通过
$this->components->info(...)
完成的。这似乎可以通过extends Command
在生成的控制台命令中工作:字符串
通过
php artisan example
运行此命令会生成以下输出:Hello World.
截图:
的数据
框架代码库中的示例:
https://github.com/laravel/framework/blob/10.x/src/Illuminate/Console/GeneratorCommand.php#L194