mirror of
https://github.com/pterodactyl/panel.git
synced 2024-11-22 00:52:43 +01:00
8 lines
262 B
PHP
8 lines
262 B
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Route;
|
|
use Pterodactyl\Http\Controllers\Admin;
|
|
|
|
Route::get('/', [Admin\BaseController::class, 'index'])->name('admin.index')->fallback();
|
|
Route::get('/{react}', [Admin\BaseController::class, 'index'])->where('react', '.+');
|