14 lines
329 B
PHP
14 lines
329 B
PHP
<?php
|
|
|
|
use App\Models\AlertMailRule;
|
|
use Illuminate\Foundation\Inspiring;
|
|
use Illuminate\Support\Facades\Artisan;
|
|
|
|
Artisan::command('inspire', function () {
|
|
$this->comment(Inspiring::quote());
|
|
})->purpose('Display an inspiring quote');
|
|
|
|
Schedule::command('send:invoice-report');
|
|
Schedule::command('send:production-report');
|
|
|