Skip to content

Instantly share code, notes, and snippets.

@escuccim
Created January 10, 2017 12:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save escuccim/547f3d8fb97872930779712900b664b4 to your computer and use it in GitHub Desktop.
Save escuccim/547f3d8fb97872930779712900b664b4 to your computer and use it in GitHub Desktop.
Laravel Middleware to set language from subdomain
<?php
namespace App\Http\Middleware;
use Closure;
class SetLanguage
{
/**
* Handle an incoming request.
*
* @param \Illuminate\Http\Request $request
* @param \Closure $next
* @return mixed
*/
public function handle($request, Closure $next)
{
$pieces = explode('.', $request->getHost());
if( ($pieces[0] == 'fr') || ($pieces[0] == 'ch')){
session(['locale' => 'fr']);
}
return $next($request);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment