1
1
mirror of https://github.com/pterodactyl/panel.git synced 2025-01-31 19:01:35 +01:00

8 lines
262 B
PHP
Raw Permalink Normal View History

2017-04-01 21:01:10 -04:00
<?php
use Illuminate\Support\Facades\Route;
use Pterodactyl\Http\Controllers\Admin;
2022-12-14 14:36:07 -07:00
Route::get('/', [Admin\BaseController::class, 'index'])->name('admin.index')->fallback();
Route::get('/{react}', [Admin\BaseController::class, 'index'])->where('react', '.+');