CheckForMaintenanceMode.php 305 B

123456789101112131415
  1. <?php
  2. namespace App\Http\Middleware;
  3. use Illuminate\Foundation\Http\Middleware\CheckForMaintenanceMode as Middleware;
  4. class CheckForMaintenanceMode extends Middleware {
  5. /**
  6. * The URIs that should be reachable while maintenance mode is enabled.
  7. *
  8. * @var array
  9. */
  10. protected $except = [//
  11. ];
  12. }