2017-04-01 21:01:10 -04:00
|
|
|
<?php
|
2017-12-14 21:05:26 -06:00
|
|
|
|
2019-11-24 12:50:16 -08:00
|
|
|
use Illuminate\Support\Facades\Route;
|
2022-05-14 15:51:05 -04:00
|
|
|
use Pterodactyl\Http\Controllers\Admin;
|
2019-11-24 12:50:16 -08:00
|
|
|
|
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', '.+');
|