Redirecting to Secure URLs | Laravel 5: Performing HTTP Redirects With redirect
A truth value of true can be supplied as an argument for the $secure parameter to generate secure (HTTPS) URLs when redirecting: 1 return redirect ( ' / ' , 302 , [ ] , true ) ; The URL that would be internally generated and redirected to in the...