routes: cleanup files

This commit is contained in:
Matthew Penner 2021-01-13 10:03:27 -07:00
parent ba41fb5095
commit e2c8a2fdea
5 changed files with 35 additions and 11 deletions

View file

@ -2,6 +2,14 @@
use Illuminate\Support\Facades\Route;
/*
|--------------------------------------------------------------------------
| Admin Routes
|--------------------------------------------------------------------------
|
| Endpoint: /admin
|
*/
Route::get('/', 'BaseController@index')->name('admin.index')->fallback();
Route::get('/{react}', 'BaseController@index')
->where('react', '.+');