Вход Регистрация
Файл: app/Http/Middleware/InstallMiddleware.php
Строк: 20
<?php

namespace AppHttpMiddleware;

use 
Closure;

class 
InstallMiddleware
{
    
/**
     * Handle an incoming request.
     *
     * @param  IlluminateHttpRequest  $request
     * @param  Closure  $next
     * @return mixed
     */
    
public function handle($requestClosure $next)
    {
        
// Check if the app is not installed
        
if (!env('APP_INSTALLED')) {
            return 
$next($request);
        }

        return 
redirect()->route('home');
    }
}
Онлайн: 5
Реклама