'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'); } }