Filippo Bertilotti
2024-07-15 488dbe0a4f0d5be738a5ac010d19a94ce45f20a2
commit | author | age
9f6455 1 <?php
DC 2
3 use Illuminate\Foundation\Inspiring;
4 use Illuminate\Support\Facades\Artisan;
5
6 /*
7 |--------------------------------------------------------------------------
8 | Console Routes
9 |--------------------------------------------------------------------------
10 |
11 | This file is where you may define all of your Closure based console
12 | commands. Each Closure is bound to a command instance allowing a
13 | simple approach to interacting with each command's IO methods.
14 |
15 */
16
17 Artisan::command('inspire', function () {
18     $this->comment(Inspiring::quote());
19 })->purpose('Display an inspiring quote');