Toggle nav
Posted 9 years ago - updated 9 years ago laravel
Use \URL::forceSchema('https');
\URL::forceSchema('https');
For example: edit AppServiceProvider.php and add to the boot() function:
AppServiceProvider.php
boot()
if (getenv('APP_ENV') == 'production') { \URL::forceSchema('https'); }