1234567891011121314151617181920212223242526272829303132 |
- <?php
- namespace App\Providers;
- use Illuminate\Support\Facades\Schema;
- use Illuminate\Support\ServiceProvider;
- class AppServiceProvider extends ServiceProvider
- {
-
- public function register()
- {
-
- }
-
- public function boot()
- {
- Schema::defaultStringLength(191);
- if(env('IS_HTTPS')){
- \URL::forceScheme('https');
- }
- }
- }
|