'array', ]; /** * Связь с моделью DAG. */ public function dag() { return $this->belongsTo(dag::class); } /** * Связь с моделью DAGRun. */ public function dagRun() { return $this->belongsTo(dag_run::class); } }