Skip to content

Instantly share code, notes, and snippets.

@Tmeister
Created July 10, 2015 03:58
Show Gist options
  • Save Tmeister/1b14f9d07ad5822f1f29 to your computer and use it in GitHub Desktop.
Save Tmeister/1b14f9d07ad5822f1f29 to your computer and use it in GitHub Desktop.
<?php
namespace App\Http\Middleware;
use Closure;
class CountryMiddleware
{
/**
* Handle an incoming request.
*
* @param \Illuminate\Http\Request $request
* @param \Closure $next
* @return mixed
*/
public function handle($request, Closure $next)
{
$country = 'Mexico';
if( $country == 'Mexico' ){
return $next($request);
}
return redirect('/');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment