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;
|
|
|
|
|
2020-09-19 23:40:53 +00:00
|
|
|
Route::get('/', 'BaseController@index')->name('admin.index')->fallback();
|
2020-12-28 17:42:34 +00:00
|
|
|
Route::get('/{react}', 'BaseController@index')
|
|
|
|
->where('react', '.+');
|