2016-08-16 19:44:28 -05:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
use Illuminate\Foundation\Inspiring;
|
2019-12-20 15:10:23 -06:00
|
|
|
use Illuminate\Support\Facades\Artisan;
|
2016-08-16 19:44:28 -05:00
|
|
|
|
|
|
|
|
Artisan::command('inspire', function () {
|
|
|
|
|
$this->comment(Inspiring::quote());
|
2025-01-24 22:55:06 +02:00
|
|
|
})->purpose('Display an inspiring quote');
|