freescoutAI/Providers/FreeScoutAIServiceProvider.php
2025-04-14 23:13:33 +02:00

83 lines
1.9 KiB
PHP

<?php
namespace Modules\FreeScoutAI\Providers;
use Illuminate\Support\ServiceProvider;
use Illuminate\Database\Eloquent\Factory;
class FreeScoutAIServiceProvider extends ServiceProvider
{
/**
* Boot the application events.
*
* @return void
*/
public function boot()
{
$this->registerTranslations();
$this->registerConfig();
$this->registerViews();
$this->loadMigrationsFrom(__DIR__ . '/../Database/Migrations');
}
/**
* Register the service provider.
*
* @return void
*/
public function register()
{
$this->app->register(RouteServiceProvider::class);
}
/**
* Register config.
*
* @return void
*/
protected function registerConfig()
{
$this->publishes([
__DIR__.'/../Config/config.php' => config_path('freescoutai.php'),
], 'config');
$this->mergeConfigFrom(
__DIR__.'/../Config/config.php', 'freescoutai'
);
}
/**
* Register views.
*
* @return void
*/
public function registerViews()
{
$viewPath = resource_path('views/modules/freescoutai');
$sourcePath = __DIR__.'/../Resources/views';
$this->publishes([
$sourcePath => $viewPath
],'views');
$this->loadViewsFrom(array_merge(array_map(function ($path) {
return $path . '/modules/freescoutai';
}, \Config::get('view.paths')), [$sourcePath]), 'freescoutai');
}
/**
* Register translations.
*
* @return void
*/
public function registerTranslations()
{
$langPath = resource_path('lang/modules/freescoutai');
if (is_dir($langPath)) {
$this->loadTranslationsFrom($langPath, 'freescoutai');
} else {
$this->loadTranslationsFrom(__DIR__ .'/../Resources/lang', 'freescoutai');
}
}
}