source: routes/console.php@ ff9da8b

Last change on this file since ff9da8b was 0924b6c, checked in by Özkan İliyaz <iliyaz_96@…>, 4 years ago

initial commit

  • Property mode set to 100644
File size: 553 bytes
RevLine 
[0924b6c]1<?php
2
3use Illuminate\Foundation\Inspiring;
4
5/*
6|--------------------------------------------------------------------------
7| Console Routes
8|--------------------------------------------------------------------------
9|
10| This file is where you may define all of your Closure based console
11| commands. Each Closure is bound to a command instance allowing a
12| simple approach to interacting with each command's IO methods.
13|
14*/
15
16Artisan::command('inspire', function () {
17 $this->comment(Inspiring::quote());
18})->describe('Display an inspiring quote');
Note: See TracBrowser for help on using the repository browser.