ok

Mini Shell

Direktori : /home2/selectio/www/billingsoftwarenew/core/app/Http/Middleware/
Upload File :
Current File : /home2/selectio/www/billingsoftwarenew/core/app/Http/Middleware/MaintenanceMode.php

<?php

namespace App\Http\Middleware;

use Closure;

class MaintenanceMode
{
    public function handle($request, Closure $next)
    {
        $general = gs();
        if ($general->maintenance_mode == 1) {

            if ($request->is('api/*')) {
                $notify[] = 'Our application is currently in maintenance mode';
                return response()->json([
                    'remark'=>'maintenance_mode',
                    'status'=>'error',
                    'message'=>['error'=>$notify]
                ]);
            }else{
                return to_route('maintenance');
            }
        }
        return $next($request);
    }
}

Zerion Mini Shell 1.0