Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
516 views
in Technique[技术] by (71.8m points)

multilingual - how do I add '/en' or '/fr' after all the base url in laravel 5.8 routes

I created a project in Laravel 5.8. I just started working on adding multiple languages in my website. How do I make it so if I click on the language button to choose french the website will load every page as /fr/<rest of the url

Like this

when selecting english language

when selecting bangla language

question from:https://stackoverflow.com/questions/65920422/how-do-i-add-en-or-fr-after-all-the-base-url-in-laravel-5-8-routes

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

When the button is clicked you should set the desired locale, this can be done using App::setLocale($locale)

The documentation of Laravel explains how you could do this, for your exact use case:

Laravel Configuring The Locale


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...