12 lines
390 B
PHP
12 lines
390 B
PHP
<?php
|
|
|
|
use Illuminate\Foundation\Inspiring;
|
|
use Illuminate\Support\Facades\Artisan;
|
|
use Illuminate\Support\Facades\Schedule;
|
|
|
|
Artisan::command('inspire', function () {
|
|
$this->comment(Inspiring::quote());
|
|
})->purpose('Display an inspiring quote')->hourly();
|
|
|
|
// Cek setiap hari pada jam 00:05 dini hari untuk autoreject expense
|
|
Schedule::command('expense:auto-reject')->dailyAt('00:05'); |