Files
vito/app/Console/Commands/Plugins/PluginsListCommand.php
Saeed Vaziry 342a3aa4c6 Plugins (#616)
* wip

* fix plugin uninstall

* marketplace
2025-06-19 14:07:15 +02:00

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());
}
}