13 lines
367 B
PHP
13 lines
367 B
PHP
<?php
|
|
|
|
use Illuminate\Foundation\Inspiring;
|
|
use Illuminate\Support\Facades\Artisan;
|
|
|
|
Artisan::command('inspire', function () {
|
|
$this->comment(Inspiring::quote());
|
|
})->purpose('Display an inspiring quote');
|
|
|
|
Schedule::command('entries:purge-rejected')->daily();
|
|
Schedule::command('entries:purge-featured')->daily();
|
|
Schedule::command('sitemap:generate')->daily();
|