php-app1/routes/console.php
2025-03-13 20:13:12 +00:00

11 lines
297 B
PHP

<?php
use Illuminate\Foundation\Console\ClosureCommand;
use Illuminate\Foundation\Inspiring;
use Illuminate\Support\Facades\Artisan;
Artisan::command('inspire', function () {
/** @var ClosureCommand $this */
$this->comment(Inspiring::quote());
})->purpose('Display an inspiring quote');