2025-04-25 09:33:28 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
use Illuminate\Foundation\Inspiring;
|
|
|
|
use Illuminate\Support\Facades\Artisan;
|
2025-05-26 16:28:16 +08:00
|
|
|
use Illuminate\Support\Facades\Schedule;
|
2025-04-25 09:33:28 +08:00
|
|
|
|
|
|
|
Artisan::command('inspire', function () {
|
|
|
|
$this->comment(Inspiring::quote());
|
|
|
|
})->purpose('Display an inspiring quote');
|
2025-05-26 16:28:16 +08:00
|
|
|
|