Middleware to detect is update is pending; move Routes into HTTP

This commit is contained in:
Nabeel Shahzad
2019-07-18 10:51:05 -04:00
parent c6547ac7fc
commit b2cf7acfb6
11 changed files with 98 additions and 80 deletions

18
app/Http/Routes/console.php Executable file
View File

@@ -0,0 +1,18 @@
<?php
use Illuminate\Foundation\Inspiring;
/*
|--------------------------------------------------------------------------
| 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());
});