Initial repository

This commit is contained in:
PovilasKorop
2021-12-05 12:57:24 +02:00
commit 0a20e3dee6
84 changed files with 11195 additions and 0 deletions
@@ -0,0 +1,17 @@
<?php
namespace App\Http\Middleware;
use Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance as Middleware;
class PreventRequestsDuringMaintenance extends Middleware
{
/**
* The URIs that should be reachable while maintenance mode is enabled.
*
* @var array
*/
protected $except = [
//
];
}