Some checks failed
continuous-integration/drone/push Build is failing
- Complete GGZ Ecademy Laravel backend application - RESTful API for learning products, members, filters - Authentication and authorization system - Database migrations and seeders - Custom CRUD generator commands - Email notification system - Integration with frontend applications
18 lines
335 B
PHP
18 lines
335 B
PHP
<?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 = [
|
|
//
|
|
];
|
|
}
|