12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- namespace App\Providers;
- use Barryvdh\LaravelIdeHelper\IdeHelperServiceProvider;
- use Illuminate\Support\ServiceProvider;
- use URL;
- class AppServiceProvider extends ServiceProvider
- {
- /**
- * Bootstrap any application services.
- *
- * @return void
- */
- public function boot()
- {
- // 检测是否强制跳转https
- if(env('REDIRECT_HTTPS', FALSE)){
- URL::forceScheme('https');
- }
- //\Schema::defaultStringLength(191);
- }
- /**
- * Register any application services.
- *
- * @return void
- */
- public function register()
- {
- if($this->app->environment() !== 'production'){
- $this->app->register(IdeHelperServiceProvider::class);
- }
- }
- }
|