'date:Y-m-d', 'end_date' => 'date:Y-m-d', 'progress' => 'integer', ]; /** * Get the company that owns this goal. */ public function company() { return $this->belongsTo(User::class, 'created_by'); } /** * Get the employee that this goal belongs to. */ public function employee() { return $this->belongsTo(User::class, 'employee_id'); } /** * Get the goal type that this goal belongs to. */ public function goalType() { return $this->belongsTo(GoalType::class, 'goal_type_id'); } }