CoolFace
Apppublic

kenken999/php

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
PreventRequestsDuringMaintenance.php18 linesDownload Raw Back to Middleware
1<?php2 3namespace App\Http\Middleware;4 5use Illuminate\Foundation\Http\Middleware\PreventRequestsDuringMaintenance as Middleware;6 7class PreventRequestsDuringMaintenance extends Middleware8{9    /**10     * The URIs that should be reachable while maintenance mode is enabled.11     *12     * @var array13     */14    protected $except = [15        //16    ];17}18