Files
panel/app/Console/Commands/InfoCommand.php

18 lines
357 B
PHP
Raw Permalink Normal View History

2017-09-16 19:47:14 -05:00
<?php
2024-03-12 22:39:16 -04:00
namespace App\Console\Commands;
2017-09-16 19:47:14 -05:00
use Illuminate\Console\Command;
class InfoCommand extends Command
{
2024-06-14 17:17:49 +02:00
protected $description = 'Displays the application, database, email and backup configurations along with the panel version.';
2017-09-21 01:16:01 -04:00
2017-09-16 19:47:14 -05:00
protected $signature = 'p:info';
2024-03-19 21:12:27 -04:00
public function handle(): void
2017-09-16 19:47:14 -05:00
{
$this->call('about');
2017-09-16 19:47:14 -05:00
}
}