2022-07-23 17:07:13 +08:00
|
|
|
<?php
|
|
|
|
|
|
2025-03-03 10:29:28 +08:00
|
|
|
use App\Http\Enum\BusinessOrderShippingStatus;
|
|
|
|
|
use App\Models\BusinessOrder;
|
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');
|