G
G
GAS-ART2022-03-09 20:57:46
Laravel
GAS-ART, 2022-03-09 20:57:46

How to change url prefix when changing language in laravel?

I have a controller that changes the language.

<?php

namespace App\Http\Controllers;

use Illuminate\Http\Request;
use Illuminate\Support\Facades\App;
use mysql_xdevapi\Session;

class languagesController extends Controller
{
    public function changeLocale($locale) {
        session(['locale'=>$locale]);

        App::setLocale('$locale');

        return redirect()->back();
    }
}

There are only two languages, so I just pass data in the link to change the language:
<a class="language-btn__link" href="{{ route('locale', __('main.change_lang_link')) }}">

Here is my route:
<?php

use Illuminate\Support\Facades\App;
use Illuminate\Support\Facades\Route;

Route::get('/locale/{locale}',  'App\Http\Controllers\[email protected]')->name('locale');

Route::get('/', function () { return view('home');})->name('index');
Route::get('/home', function () {return view('home');})->name('home');

Here is the facade:
<?php

namespace App\Http\Middleware;

class LanguageSwitcher
{
    public function handle($request, \Closure $next)
    {
       \App::setlocale(session ('locale'));

        return $next($request);
    }
}

Now the translation is working, but I would like to add a prefix to the url so that it would turn out /home/ru or /ru

Question, how to do this? And along the way, the question is how to determine to load immediately the default prefix when the page is first loaded?

I tried setting a variable in the route:
Route::get('/{lang}/home', function (Lang $lang) {return view('home');})->name('home');

And in the link write like this
href="{{ route('index', ['lang' => __('main.change_lang_link')]) }}"

But it doesn't work. How to do it right?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
S
Sergey delphinpro, 2022-03-09
@Gavr_Gavr

Take the ready package mcamara/laravel-localization
Well, or peep how it is implemented there.

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question