OwlCyberSecurity - MANAGER
Edit File: AppServiceProvider.php
<?php namespace App\Providers; use Illuminate\Support\Facades\Schema; use Illuminate\Support\ServiceProvider; class AppServiceProvider extends ServiceProvider { /** * Bootstrap any application services. * * @return void */ public function boot() { Schema::defaultStringLength(191); if ($this->app->environment() === 'production'){ \URL::forceScheme('https'); } } /** * Register any application services. * * @return void */ public function register() { // } }