todo/app/Providers/AppServiceProvider.php
2022-04-15 11:29:50 +07:00

32 lines
526 B
PHP
Executable File

<?php
namespace App\Providers;
use Illuminate\Support\ServiceProvider;
use Illuminate\Support\Facades\URL;
class AppServiceProvider extends ServiceProvider
{
/**
* Register any application services.
*
* @return void
*/
public function register()
{
//
}
/**
* Bootstrap any application services.
*
* @return void
*/
public function boot()
{
if (config('app.env') == 'production') {
URL::forceScheme('https');
}
}
}