jonnybarnes.uk/routes/console.php

20 lines
593 B
PHP
Raw Normal View History

2016-09-06 16:40:39 +01:00
<?php
use Illuminate\Foundation\Inspiring;
2020-10-19 19:41:50 +01:00
use Illuminate\Support\Facades\Artisan;
2016-09-06 16:40:39 +01: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());
})->describe('Display an inspiring quote');