Skip to content

Instantly share code, notes, and snippets.

@joshbrw
Created May 24, 2016 08:12
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 joshbrw/4c193dcfe4ba0b910ead3f5b3ce94bbb to your computer and use it in GitHub Desktop.
Save joshbrw/4c193dcfe4ba0b910ead3f5b3ce94bbb to your computer and use it in GitHub Desktop.
<?php namespace App\Http\Middleware;
use Closure;
class SecureAllPages
{
/**
* Handle an incoming request.
*
* @param \Illuminate\Http\Request $request
* @param \Closure $next
* @return mixed
*/
public function handle($request, Closure $next)
{
if (!$request->secure()) {
return redirect()->secure($request->getRequestUri());
}
return $next($request);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment