Skip to content

Instantly share code, notes, and snippets.

@grandmanitou
Last active October 10, 2019 20:06
Show Gist options
  • Save grandmanitou/55ce06148082f492690862baa5e004c4 to your computer and use it in GitHub Desktop.
Save grandmanitou/55ce06148082f492690862baa5e004c4 to your computer and use it in GitHub Desktop.
Laravel 6.x Https Middleware
<?php
namespace App\Http\Middleware;
use Closure;
use Illuminate\Support\Facades\Log;
class Https
{
/**
* Handle an incoming request.
*
* @param \Illuminate\Http\Request $request
* @param \Closure $next
* @return mixed
*/
public function handle($request, Closure $next)
{
if ($request->secure()) {
return $next($request);
}
abort(400, 'Bad Request - Https is required');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment