Skip to content

Instantly share code, notes, and snippets.

@mtigdemir
Created August 28, 2015 08:02
Show Gist options
  • Select an option

  • Save mtigdemir/a48438cf1bf837e9e85e to your computer and use it in GitHub Desktop.

Select an option

Save mtigdemir/a48438cf1bf837e9e85e to your computer and use it in GitHub Desktop.
Laravel Https Force Middleware
<?php
namespace App\Http\Middleware;
use Closure;
use URL;
//Add This middleware to Http/Kernel.php $middleware array
class HttpsMiddleware
{
/**
* Handle an incoming request.
*
* @param \Illuminate\Http\Request $request
* @param \Closure $next
* @return mixed
*/
public function handle($request, Closure $next)
{
if (env('APP_ENV') === 'production') {
URL::forceSchema('https');
}
return $next($request);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment