The laravel web application is in development for last 20 days. Now its required to be on https
instead of http
, so need to change whole code for https
because laravel either requires to pass third parameter as true
for script and style sheets. Or need to append or prepend secure
word in fuction call like secure_assets
So my question is simple as that, can I have some parental logic by which I can efficiently manage the transfer without bothering about request method is secure or not.
Thanks!