Upgrade to Laravel 8

This commit is contained in:
Will
2020-09-27 15:01:17 +01:00
parent 4dec68867f
commit e3ac41d007
79 changed files with 1832 additions and 1352 deletions

View File

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