'boolean', 'unit_placement_after' => 'boolean', ]; /** * Get the information associated with the attribute. * * @return BelongsTo */ public function information() { return $this->belongsTo(Information::class); } /** * Get the attribute default values associated with the attribute. * * @return HasMany */ public function defaultValues() { return $this->hasMany(AttributeDefaultValue::class); } }