19 lines
564 B
PHP
19 lines
564 B
PHP
<?php
|
|
|
|
use Illuminate\Foundation\Console\ClosureCommand;
|
|
use Illuminate\Foundation\Inspiring;
|
|
use Illuminate\Support\Facades\Artisan;
|
|
use Illuminate\Support\Facades\Schedule;
|
|
|
|
Artisan::command('inspire', function () {
|
|
/** @var ClosureCommand $this */
|
|
$this->comment(Inspiring::quote());
|
|
})->purpose('Display an inspiring quote');
|
|
|
|
// Schedule perizinan data sync daily at midnight (including all data types)
|
|
Schedule::command('perizinan:sync --all')
|
|
->dailyAt('00:00')
|
|
->timezone('Asia/Jakarta')
|
|
->withoutOverlapping()
|
|
->runInBackground();
|