php - laravel 5 configuration service providers for local only -
i read laravel 5 doc on configuration based on environment http://laravel.com/docs/5.0/configuration#environment-configuration
i understand how .env files can used configure variables how configure service providers loaded based on environment?
for example in ''local'' environment use debugbar plugin needs service provider don't want define in config/app.php production.
in laravel 4.2 create config/local/app.php doesn't seem work anymore, alternative?
i believe if set app_debug false in .env file debugbar go away automatically.
also wrote middleware class take care of that.
the handle method in case:
public function handle($request, closure $next) { if (app()->environment('production')) \debugbar::disable(); else \debugbar::enable(); return $next($request); }
then add list of middleware in app/http/kernel.php , you're go.
i have additional conditions , more environments exact code not tested should work , should idea.
take care.
Comments
Post a Comment