t('Icon Image'), 'environment_id' => t('Environment Id') ]; } public function createBehaviors(Behaviors $behaviors) { $behaviors->add(new Binary([ 'id', 'environment_id' ])); } public function createRelations(Relations $relations) { $relations->belongsTo('environment', Environment::class); $relations->hasMany('host', Host::class); $relations->hasMany('service', Service::class); } }