Skip to content

Instantly share code, notes, and snippets.

@zoparga
Created September 15, 2022 07:21
Show Gist options
  • Save zoparga/6dd32eaa0e9c12b41a1bae52531ae747 to your computer and use it in GitHub Desktop.
Save zoparga/6dd32eaa0e9c12b41a1bae52531ae747 to your computer and use it in GitHub Desktop.
Add these to AppServiceProvider to provide proper DEV environment
if (! app()->environment('local')) {
\URL::forceScheme('https');
}
if (! app()->environment('production')) {
Mail::alwaysTo('dev@email.address');
}
Model::preventLazyLoading(! app()->isProduction());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment