$val) { $this->$key = $val; } } /** * @param Collection $list * @return Collection */ static public function makeList(Collection $list) { $ret = collect(); foreach ($list as $data) { $ret->push(new static($data)); } return $ret; } }