-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
as per current laravel skeleton
- Loading branch information
Showing
2 changed files
with
29 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<?php | ||
|
||
use Illuminate\Foundation\Inspiring; | ||
use Illuminate\Support\Facades\Artisan; | ||
|
||
/* | ||
|-------------------------------------------------------------------------- | ||
| 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()); | ||
})->purpose('Display an inspiring quote'); |