mirror of
https://github.com/vitodeploy/vito.git
synced 2025-07-02 06:26:16 +00:00
19 lines
361 B
PHP
19 lines
361 B
PHP
<?php
|
|
|
|
namespace App\Console\Commands\Plugins;
|
|
|
|
use App\Facades\Plugins;
|
|
use Illuminate\Console\Command;
|
|
|
|
class PluginsListCommand extends Command
|
|
{
|
|
protected $signature = 'plugins:list';
|
|
|
|
protected $description = 'List all installed plugins';
|
|
|
|
public function handle(): void
|
|
{
|
|
$this->table(['Name', 'Version'], Plugins::all());
|
|
}
|
|
}
|