php 如何在laravel artisan的输出消息命令中添加徽章?

lb3vh1jj  于 11个月前  发布在  PHP
关注(0)|答案(1)|浏览(99)

我正在创建一个laravel artisan命令,工作正常,但我希望输出像下面的图像有人知道这个问题的解决方案吗?laravel artisan command output sample
我想添加一个徽章像一个本地工匠命令。

zzzyeukh

zzzyeukh1#

这不在文档中,但基本的Artisan命令是通过$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.
截图:


的数据
框架代码库中的示例:
https://github.com/laravel/framework/blob/10.x/src/Illuminate/Console/GeneratorCommand.php#L194

相关问题