I really dont know how to title this question, however this is what I am trying to get
public function getDurationSpent()
{
// This will return the start date to start counting from
$start = $this->getRepaymentCycleStartDate();
// The duration_period will be diffInWeeks or diffInMonths or diffInYears depending on what duration_period holds
$period = 'diffIn' . $this->category->duration_period;
// here now I need to find the difference in weeks or Months or Years using the carbon method DiffIn, so I thought maybe joining the string from $period will work it out. but it doesn't
return $start->$period->();
}