• File: CheckForMaintenanceMode.php
  • Full Path: /home/masbinta/public_html/core/app/Http/Middleware/CheckForMaintenanceMode.php
  • File size: 351 bytes
  • MIME-type: text/x-php
  • Charset: utf-8
<?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 = [
        'admin/*', 'admin'
    ];
}