pingcrm/routes/console.php

20 lines
592 B
PHP
Raw Permalink Normal View History

2019-03-05 18:10:11 -03:00
<?php
use Illuminate\Foundation\Inspiring;
2020-07-29 12:07:37 -03:00
use Illuminate\Support\Facades\Artisan;
2019-03-05 18:10:11 -03:00
/*
|--------------------------------------------------------------------------
| 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());
2020-09-08 19:45:49 -03:00
})->purpose('Display an inspiring quote');