File: D:/HostingSpaces/SBogers10/base.komma.pro/app/Providers/ComponentServiceProvider.php
<?php
namespace App\Providers;
use App\Components\ComponentTypes;
use App\Components\Types\ContentPersonal;
use App\Components\Types\FeaturedServices;
use App\Components\Types\Tabs;
use App\Components\Types\Testimonials;
use Illuminate\Support\ServiceProvider;
use Komma\KMS\Components\ComponentType\ComponentTypeFactory;
class ComponentServiceProvider extends ServiceProvider
{
/**
* Bootstrap any application services.
*
* @return void
*/
public function boot()
{
}
/**
* Register any application services.
*f
* @return void
*/
public function register()
{
ComponentTypeFactory::registerType(ComponentTypes::CONTENT_PERSONAL, ContentPersonal::class);
ComponentTypeFactory::registerType(ComponentTypes::TABS, Tabs::class);
ComponentTypeFactory::registerType(ComponentTypes::FEATURED_SERVICES, FeaturedServices::class);
ComponentTypeFactory::registerType(ComponentTypes::TESTIMONIALS, Testimonials::class);
}
}