2017-04-02 03:01:10 +02:00
|
|
|
<?php
|
2018-06-21 08:05:35 +02:00
|
|
|
|
2019-03-24 01:41:43 +01:00
|
|
|
Route::get('/', 'IndexController@index')->name('index')->fallback();
|
2018-07-05 04:38:23 +02:00
|
|
|
Route::get('/account', 'IndexController@index')->name('account');
|
2017-05-05 22:27:36 +02:00
|
|
|
|
2019-11-16 21:46:19 +01:00
|
|
|
Route::get('/locales/{locale}/{namespace}.json', 'LocaleController')
|
|
|
|
->where('namespace', '.*');
|
|
|
|
|
2019-06-10 04:26:20 +02:00
|
|
|
Route::get('/{react}', 'IndexController@index')
|
|
|
|
->where('react', '^(?!(\/)?(api|auth|admin|daemon)).+');
|