fix: repair link made by `asset() in blade template when working on http`

The forcing is useless, we are forcing links through many other
ways. I need to test aspects of deployments on my laptop to mimic
production deployment without this hassle.
This commit is contained in:
Valentin Lab
2025-10-11 05:32:01 +02:00
parent 1867e75177
commit 1f7098d55b

View File

@@ -11,9 +11,6 @@ class AppServiceProvider extends ServiceProvider
{
public function boot()
{
if (config('app.env') === 'production') {
\URL::forceScheme('https');
}
Schema::defaultStringLength(191);
View::composer('Shop.layout.layout', LayoutComposer::class);
}