first commit

This commit is contained in:
Anonymous
2019-10-22 23:39:48 +08:00
commit 4ddaf3eb5d
142 changed files with 19074 additions and 0 deletions

View File

@ -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 = [
//
];
}