AppServiceProvider.php 655 B

12345678910111213141516171819202122232425262728293031323334353637
  1. <?php
  2. namespace App\Providers;
  3. use Barryvdh\LaravelIdeHelper\IdeHelperServiceProvider;
  4. use Illuminate\Support\ServiceProvider;
  5. use URL;
  6. class AppServiceProvider extends ServiceProvider
  7. {
  8. /**
  9. * Bootstrap any application services.
  10. *
  11. * @return void
  12. */
  13. public function boot()
  14. {
  15. // 检测是否强制跳转https
  16. if(env('REDIRECT_HTTPS', FALSE)){
  17. URL::forceScheme('https');
  18. }
  19. //\Schema::defaultStringLength(191);
  20. }
  21. /**
  22. * Register any application services.
  23. *
  24. * @return void
  25. */
  26. public function register()
  27. {
  28. if($this->app->environment() !== 'production'){
  29. $this->app->register(IdeHelperServiceProvider::class);
  30. }
  31. }
  32. }