forge/routes/console.php
2024-06-20 12:19:07 -04:00

9 lines
192 B
PHP

<?php
use App\Console\Commands\ImportHub;
use Illuminate\Support\Facades\Schedule;
Schedule::command(ImportHub::class)->hourly();
Schedule::command('horizon:snapshot')->everyFiveMinutes();