Answer the question
In order to leave comments, you need to log in
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();
}
}
<a class="language-btn__link" href="{{ route('locale', __('main.change_lang_link')) }}">
<?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');
<?php
namespace App\Http\Middleware;
class LanguageSwitcher
{
public function handle($request, \Closure $next)
{
\App::setlocale(session ('locale'));
return $next($request);
}
}
Route::get('/{lang}/home', function (Lang $lang) {return view('home');})->name('home');
href="{{ route('index', ['lang' => __('main.change_lang_link')]) }}"
Answer the question
In order to leave comments, you need to log in
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 questionAsk a Question
731 491 924 answers to any question