Update base laravel classess and middleware

This commit is contained in:
DariusIII
2019-01-09 11:02:41 +01:00
parent 718cf02857
commit 86b500bdb5
8 changed files with 54 additions and 6 deletions
@@ -0,0 +1,17 @@
<?php
namespace App\Http\Middleware;
use Illuminate\Foundation\Http\Middleware\CheckForMaintenanceMode as Middleware;
class CheckForMaintenanceMode extends Middleware
{
/**
* The URIs that should be reachable while maintenance mode is enabled.
*
* @var array
*/
protected $except = [
//
];
}