Files
opensem/app/Providers/AppServiceProvider.php
Valentin Lab 1f7098d55b 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.
2025-10-11 05:32:01 +02:00

18 lines
397 B
PHP

<?php
namespace App\Providers;
use App\View\Composers\Shop\LayoutComposer;
use Illuminate\Support\Facades\Schema;
use Illuminate\Support\Facades\View;
use Illuminate\Support\ServiceProvider;
class AppServiceProvider extends ServiceProvider
{
public function boot()
{
Schema::defaultStringLength(191);
View::composer('Shop.layout.layout', LayoutComposer::class);
}
}