forked from Alex/Pterodactyl-Panel
8 lines
195 B
PHP
8 lines
195 B
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Route;
|
|
|
|
Route::get('/', 'BaseController@index')->name('admin.index')->fallback();
|
|
Route::get('/{react}', 'BaseController@index')
|
|
->where('react', '.+');
|