Your IP : 216.73.217.77


Current Path : /home/users/unlimited/www/whatsapp-crm/app/Providers/
Upload File :
Current File : /home/users/unlimited/www/whatsapp-crm/app/Providers/AppServiceProvider.php

<?php

namespace App\Providers;

use Illuminate\Support\ServiceProvider;

class AppServiceProvider extends ServiceProvider
{
    /**
     * Register any application services.
     */
    public function register(): void
    {
        //
    }

    /**
     * Bootstrap any application services.
     */
    public function boot(): void
    {
        if (!\App::environment('local')) {
            \URL::forceScheme('https');
        }
    }
}