Skip to content

Instantly share code, notes, and snippets.

@Jhhames
Last active April 14, 2019 21:30
Show Gist options
  • Save Jhhames/235c6adea5ad0c274dd9a184fe6a7f76 to your computer and use it in GitHub Desktop.
Save Jhhames/235c6adea5ad0c274dd9a184fe6a7f76 to your computer and use it in GitHub Desktop.
<?php
use Illuminate\Support\Facades\URL;
public function __construct(){
// Force SSL in production
if (config('app.env') == 'production') {
URL::forceScheme('https');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment