A quick tip how to force your Laravel app to use HTTPS/SSL.
Just add \URL::forceScheme('https') to the boot() method of the AppServiceProvider.php as shown below:
\URL::forceScheme('https')
boot()
AppServiceProvider.php
Join other 162+ subscribers and receive monthly web-development tips & tricks.