Add Localization Middleware

pull/547/head
Daniel Supernault 7 years ago
parent ef10c24d16
commit 32ef92b917
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7

@ -0,0 +1,23 @@
<?php
namespace App\Http\Middleware;
use Closure, Session;
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);
}
}
Loading…
Cancel
Save