All checks were successful
ERP-Deploy-Demo / deploy-demo (push) Successful in 56s
14 lines
334 B
PHP
14 lines
334 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');
|
|
|
|
Schedule::command('tenants:run finance:notify-utility-fees')->dailyAt('08:00');
|
|
|
|
|