/home/techb158/immovalet.com/vendor/botble/seo-helper/src/Providers
Edit: /home/techb158/immovalet.com/vendor/botble/seo-helper/src/Providers/SeoHelperServiceProvider.php (1446B)
app->bind(SeoMetaContract::class, SeoMeta::class);
$this->app->bind(SeoHelperContract::class, SeoHelper::class);
$this->app->bind(SeoOpenGraphContract::class, SeoOpenGraph::class);
$this->app->bind(SeoTwitterContract::class, SeoTwitter::class);
Helper::autoload(__DIR__ . '/../../helpers');
}
public function boot()
{
$this->setNamespace('packages/seo-helper')
->loadAndPublishConfigurations(['general'])
->loadAndPublishViews()
->loadAndPublishTranslations()
->publishAssets();
$this->app->register(EventServiceProvider::class);
$this->app->booted(function () {
$this->app->register(HookServiceProvider::class);
});
}
}