This commit is contained in:
Saeed Vaziry
2025-02-20 18:00:13 +01:00
parent 49137a757b
commit abe27cde01
20 changed files with 550 additions and 9 deletions

View File

@ -0,0 +1,18 @@
<?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'));
}
}