misc_pterodactyl-panel/routes/admin.php

8 lines
195 B
PHP
Raw Normal View History

2017-04-02 01:01:10 +00:00
<?php
use Illuminate\Support\Facades\Route;
Route::get('/', 'BaseController@index')->name('admin.index')->fallback();
Route::get('/{react}', 'BaseController@index')
->where('react', '.+');