0👍
Try these routes
Route::get('/admin/{any?}', function () {
return view('admin');
})->where('any', '[\/\w\.-]*');
Route::get('/{any?}', function () {
return view('app');
})->where('any', '[\/\w\.-]*');
- [Vuejs]-Set language with i18n an change country flag based on selected language in Vuejs
- [Vuejs]-Trying to get my app posted on heroku got error :"No 'Access-Control-Allow-Origin' header is present on the requested resource"
Source:stackexchange.com