<?php
namespace App\Komma\Shop\Properties\Kms;
use App\Komma\Kms\Core\Sections\SectionService;
use App\Komma\Shop\Properties\Models\PropertyValue;
/**
* Class PropertyService
*/
class PropertyValueService extends SectionService
{
protected $sortable = false;
public function __construct()
{
$this->forModelName = PropertyValue::class;
parent::__construct();
}
}