İdeal bir AppServiceProvider dosyası şöyle olmalıdır:
namespace App\Providers;
use Illuminate\Support\Facades\URL;
use Illuminate\Pagination\Paginator;
use Illuminate\Support\Facades\Schema;
use Illuminate\Support\ServiceProvider;
class AppServiceProvider extends ServiceProvider
{
public function register()
{
//
}
public function boot()
{
if (env('APP_ENV') === 'production') {
URL::forceScheme('https');
}
// bootstrap kullanıyorsanız açın
// Paginator::useBootstrap();
Schema::defaultStringLength(191);
}
}