mirror of
				https://github.com/pelican-dev/panel.git
				synced 2025-10-31 05:56:52 +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]);
 | 
