Skip to content

Instantly share code, notes, and snippets.

@zoparga
Created September 15, 2022 07:21
Show Gist options
  • Select an option

  • Save zoparga/6dd32eaa0e9c12b41a1bae52531ae747 to your computer and use it in GitHub Desktop.

Select an option

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('[email protected]');
}
Model::preventLazyLoading(! app()->isProduction());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment