source: routes/console.php@ c5e383e

Last change on this file since c5e383e was 2fc88ec, checked in by beratkjufliju <kufliju@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 592 bytes
Line 
1<?php
2
3use Illuminate\Foundation\Inspiring;
4use 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
17Artisan::command('inspire', function () {
18 $this->comment(Inspiring::quote());
19})->purpose('Display an inspiring quote');
Note: See TracBrowser for help on using the repository browser.