forge/routes/console.php

9 lines
192 B
PHP
Raw Normal View History

2024-05-13 18:55:34 -04:00
<?php
2024-06-05 16:31:29 -04:00
use App\Console\Commands\ImportHub;
use Illuminate\Support\Facades\Schedule;
2024-05-13 18:55:34 -04:00
2024-06-05 16:31:29 -04:00
Schedule::command(ImportHub::class)->hourly();
2024-06-20 12:19:07 -04:00
Schedule::command('horizon:snapshot')->everyFiveMinutes();