for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace EasyPanel\Commands;
use EasyPanel\Support\Contract\UserProviderFacade;
use Illuminate\Console\Command;
class GetAdmins extends Command
{
protected $description = 'Get Admins list';
protected $signature = 'panel:admins';
public function handle()
$admins = UserProviderFacade::getAdmins();
$this->warn('Admin Lists :');
foreach ($admins as $admin){
$this->warn("• {$admin->name}: {$admin->email}");
}