32 lines
		
	
	
		
			662 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			662 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Http\Middleware;
 | |
| 
 | |
| use Closure;
 | |
| 
 | |
| class RedirectIfWizardCompleted
 | |
| {
 | |
|     /**
 | |
|      * Handle an incoming request.
 | |
|      *
 | |
|      * @param  \Illuminate\Http\Request  $request
 | |
|      * @param  \Closure  $next
 | |
|      * @return mixed
 | |
|      */
 | |
|     public function handle($request, Closure $next)
 | |
|     {
 | |
|         // Not in wizard
 | |
|         if (!starts_with($request->getPathInfo(), '/wizard')) {
 | |
|             return $next($request);
 | |
|         }
 | |
| 
 | |
|         // Wizard not completed
 | |
|         if (!setting('general.wizard', 0)) {
 | |
|             return $next($request);
 | |
|         }
 | |
| 
 | |
|         // Wizard completed, redirect to home
 | |
|         redirect()->intended('/')->send();
 | |
|     }
 | |
| }
 |