mirror of
https://github.com/pelican-dev/panel.git
synced 2025-09-09 07:28:37 +02:00

Co-authored-by: RMartinOscar <40749467+RMartinOscar@users.noreply.github.com> Co-authored-by: Boy132 <Boy132@users.noreply.github.com> Co-authored-by: Lance Pioch <git@lance.sh>
8 lines
190 B
PHP
8 lines
190 B
PHP
<?php
|
|
|
|
use App\Livewire\Installer\PanelInstaller;
|
|
use Illuminate\Support\Facades\Route;
|
|
|
|
Route::get('installer', PanelInstaller::class)->name('installer')
|
|
->withoutMiddleware(['auth']);
|