vito/app/Cli/Commands/InfoCommand.php
Saeed Vaziry abe27cde01 wip
2025-03-02 10:59:46 +01:00

19 lines
370 B
PHP

<?php
namespace App\Cli\Commands;
use Illuminate\Console\Command;
class InfoCommand extends Command
{
protected $signature = 'info';
protected $description = 'Show the application information';
public function handle(): void
{
$this->info('Version: '.config('app.version'));
$this->info('Timezone: '.config('app.timezone'));
}
}