This commit is contained in:
mcoder 2026-04-14 18:30:49 +03:30
parent 78c237cdd4
commit a106165f4c

View File

@ -3,6 +3,7 @@
namespace App\Providers;
use Illuminate\Support\ServiceProvider;
use Illuminate\Support\Facades\URL;
class AppServiceProvider extends ServiceProvider
{
@ -19,6 +20,7 @@ public function register(): void
*/
public function boot(): void
{
//
URL::forceScheme('https');
}
}