erp/routes/console.php

20 lines
596 B
PHP
Raw Normal View History

2022-07-23 17:07:13 +08:00
<?php
2024-12-28 15:32:20 +08:00
use App\Services\Business\BusinessFactory;
2022-07-23 17:07:13 +08:00
use Illuminate\Foundation\Inspiring;
/*
|--------------------------------------------------------------------------
| Console Routes
|--------------------------------------------------------------------------
|
| This file is where you may define all of your Closure based console
| commands. Each Closure is bound to a command instance allowing a
| simple approach to interacting with each command's IO methods.
|
*/
Artisan::command('inspire', function () {
$this->comment(Inspiring::quote());
})->describe('Display an inspiring quote');