4

中间件

<?php

namespace App\Http\Middleware;

use Closure;

class localization
{
    /**
     * Handle an incoming request.
     *
     * @param  \Illuminate\Http\Request  $request
     * @param  \Closure  $next
     * @return mixed
     */
    public function handle($request, Closure $next)
    {
        if(\Session::has('locale')){
            \App::setLocale(\Session::get('locale'));
        }
       
        return $next($request);
    }
}

路线

Route::get('locale/{locale}', function($locale){
    Session::put('locale',$locale);
    return redirect()->back() ;
});

看法

<html lang="{{app()->getLocale()}}">

<a href="locale/en">en</a>
<a href="locale/ar">ar</a>

<h1>@lang('home.title')</h1>


</html>

按钮重定向到同一页面而没有任何更改。当我更改文件 app.php 中的默认语言时,这会更改语言,但我需要动态更改它。

4

0 回答 0