Toggle nav
Posted 8 years ago - updated 8 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'); }