2017-04-02 01:01:10 +00:00
|
|
|
<?php
|
2017-12-15 03:05:26 +00:00
|
|
|
|
2019-11-24 20:50:16 +00:00
|
|
|
use Illuminate\Support\Facades\Route;
|
2022-05-14 19:51:05 +00:00
|
|
|
use Pterodactyl\Http\Controllers\Admin;
|
2019-11-24 20:50:16 +00:00
|
|
|
|
2022-12-14 21:36:07 +00:00
|
|
|
Route::get('/', [Admin\BaseController::class, 'index'])->name('admin.index')->fallback();
|
|
|
|
Route::get('/{react}', [Admin\BaseController::class, 'index'])->where('react', '.+');
|