'date', 'expected_revenue' => 'decimal:2', 'actions' => 'integer', 'position' => 'integer', ]; public function pipelineLane() { return $this->belongsTo(PipelineLane::class); } /** * Get the notes */ public function notes() { return $this->morphMany(Note::class, 'notable'); } /** * Get the todos */ public function todos() { return $this->morphMany(Todo::class, 'todoable'); } }