i use Laravel 5.4 and my application works fine. My routes and views are display correctly like:
app.de/de
app.de/en
app.de/de/kontakt
app.de/en/contact
On my first page call i want to force the default lang like a redirect from app.de to -> app.de/de
web.php:
Route::get('/{locale}', function ($locale) {
App::setLocale($locale);
return view('welcome');});
Can someone tell me how I can solve this?
Thanx.
via Sascha