| Current Path : /home/zada/www/app/Http/Middleware/ |
| Current File : /home/zada/www/app/Http/Middleware/HttpsProtocol.php |
<?php
namespace App\Http\Middleware;
use Closure;
class HttpsProtocol {
/**
* Handle an incoming request.
*
* @param \Illuminate\Http\Request $request
* @param \Closure $next
* @return mixed
*/
public function handle($request, Closure $next)
{
if (env('FORCE_HTTPS') == "On" && !$request->secure()) {
return redirect()->secure($request->getRequestUri());
}
return $next($request);
}
}