HEX
Server: Apache/2.4.58 (Ubuntu)
System: Linux ip-172-26-0-120 6.17.0-1009-aws #9~24.04.2-Ubuntu SMP Fri Mar 6 23:50:29 UTC 2026 x86_64
User: ubuntu (1000)
PHP: 8.3.6
Disabled: NONE
Upload Files
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();