laravel更改路由器动态本地化

I'm trying to Localization. If there are buttons A and B. The country code is "KO" when you click the A button. If you click B button, I want to set it as "JA" country code.

For example, www.neiter.site/ko/commonity

I want to change it dynamic. Please show me how.

Wherever I go, I want to change only the part of the country code URL from "ko" to "ja." Of course the opposite is possible.

Route::get('/{loc}/commonity', function ($locale) {
    App::setLocale($locale);

    //
})

Read More ..