Files
nexusphp/routes/console.php

23 lines
693 B
PHP
Raw Normal View History

2021-04-02 19:48:41 +08:00
<?php
use Illuminate\Foundation\Inspiring;
use Illuminate\Support\Facades\Artisan;
2025-05-04 15:52:08 +07:00
use Illuminate\Support\Facades\Schedule;
2021-04-02 19:48:41 +08:00
/*
|--------------------------------------------------------------------------
| Console Routes
|--------------------------------------------------------------------------
|
| This file is where you may define all of your Closure based console
| commands. Each Closure is bound to a command instance allowing a
| simple approach to interacting with each command's IO methods.
|
*/
Artisan::command('inspire', function () {
$this->comment(Inspiring::quote());
})->purpose('Display an inspiring quote');
2025-05-04 15:52:08 +07:00
Schedule::command('horizon:snapshot')->everyFiveMinutes();