/**
  * Get all Active Fund Items
  * @return array
  */
 public function getActive()
 {
     return $this->fundItem->where('status', 'active')->get();
 }