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