mirror of
https://github.com/pelican-dev/panel.git
synced 2025-05-19 18:44:46 +02: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]);
|