15 lines
426 B
PHP
15 lines
426 B
PHP
<?php
|
|
|
|
use Illuminate\Foundation\Inspiring;
|
|
use Illuminate\Support\Facades\Artisan;
|
|
use Illuminate\Support\Facades\Schedule;
|
|
use App\Console\Commands\GenerateBlogAssistant;
|
|
|
|
Artisan::command('inspire', function () {
|
|
$this->comment(Inspiring::quote());
|
|
})->purpose('Display an inspiring quote');
|
|
|
|
// Schedule the AI Blog Assistant
|
|
// Run daily at 09:00 AM
|
|
Schedule::command(GenerateBlogAssistant::class)->dailyAt('09:00');
|