feat: Initialize core application structure including authentication, role-based dashboards, service task management, and integration workflows.
This commit is contained in:
13
routes/console.php
Normal file
13
routes/console.php
Normal file
@@ -0,0 +1,13 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Foundation\Inspiring;
|
||||
use Illuminate\Support\Facades\Artisan;
|
||||
|
||||
Artisan::command('inspire', function () {
|
||||
$this->comment(Inspiring::quote());
|
||||
})->purpose('Display an inspiring quote');
|
||||
|
||||
use Illuminate\Support\Facades\Schedule;
|
||||
use App\Jobs\CheckSlaDeadlines;
|
||||
|
||||
Schedule::job(CheckSlaDeadlines::class)->hourly();
|
||||
Reference in New Issue
Block a user