Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save droptable-ru/0ebbba2d6a5abde674bd8597be1e12c5 to your computer and use it in GitHub Desktop.
Save droptable-ru/0ebbba2d6a5abde674bd8597be1e12c5 to your computer and use it in GitHub Desktop.
$question = new Question();
$question->answers = "wefwef";
$question->answers = [
"wefwefwe",
"wefdwefwef",
"wefwefwef"
];
// Геттер и сеттер
public function getAnswers($value)
{
return explode('|', $value);
}
public function setAnswers($value)
{
$this->attributes['answers'] = implode('|', $value);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment