/**
*
@return \Illuminate\Database\Eloquent\Collection
*/
public function getProperties()
{
return $this->properties()->select('*')->orderBy('sort_order')->get()->groupBy(function($q) {
return PropertyGroup::where('ultra_uuid', $q->property_group_ultra_uuid)->first()->ultra_name;
});
}