mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-11-04 12:36:53 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			285 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			285 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
use App\Livewire\Installer\PanelInstaller;
 | 
						|
use Illuminate\Support\Facades\Route;
 | 
						|
use App\Http\Middleware\RequireTwoFactorAuthentication;
 | 
						|
 | 
						|
Route::get('installer', PanelInstaller::class)->name('installer')
 | 
						|
    ->withoutMiddleware(['auth', RequireTwoFactorAuthentication::class]);
 |