Boy132 3dfdc70790
Make use of Laravels AboutCommand (#809)
* add pelican info to laravel AboutCommand

* simplify p:info command
2024-12-10 23:07:59 +01:00

18 lines
357 B
PHP

<?php
namespace App\Console\Commands;
use Illuminate\Console\Command;
class InfoCommand extends Command
{
protected $description = 'Displays the application, database, email and backup configurations along with the panel version.';
protected $signature = 'p:info';
public function handle(): void
{
$this->call('about');
}
}