2024-11-27 11:16:45 +07:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
use Illuminate\Foundation\Inspiring;
|
|
|
|
|
use Illuminate\Support\Facades\Artisan;
|
2026-06-01 15:01:03 +07:00
|
|
|
use Illuminate\Support\Facades\Schedule;
|
2024-11-27 11:16:45 +07:00
|
|
|
|
|
|
|
|
Artisan::command('inspire', function () {
|
|
|
|
|
$this->comment(Inspiring::quote());
|
|
|
|
|
})->purpose('Display an inspiring quote')->hourly();
|
2026-06-01 15:01:03 +07:00
|
|
|
|
|
|
|
|
// Cek setiap hari pada jam 00:05 dini hari untuk autoreject expense
|
|
|
|
|
Schedule::command('expense:auto-reject')->dailyAt('00:05');
|