File: /var/www/html/api.aianced.com/routes/console.php
<?php
use App\Models\AnalysisLog;
use Illuminate\Foundation\Inspiring;
use Illuminate\Support\Facades\Artisan;
use Illuminate\Support\Facades\Schedule;
Artisan::command('inspire', function () {
$this->comment(Inspiring::quote());
})->purpose('Display an inspiring quote');
// Delete analysis logs older than 3 months — runs daily at 2am
Schedule::call(function () {
$deleted = AnalysisLog::where('created_at', '<', now()->subMonths(3))->delete();
\Illuminate\Support\Facades\Log::info("Analysis log pruning: {$deleted} records deleted.");
})->dailyAt('02:00')->name('prune-analysis-logs')->withoutOverlapping();