Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // Question Model
- public function setQuestionTypeAttribute(QuestionType $questionType = null) {
- if ($questionType == null) {
- $this->questionType()->dissociate();
- } else {
- $this->questionType()->associate($questionType);
- }
- }
- // Syntax:
- $question->questionType = $questionType;
- $question->questionType = null;
Add Comment
Please, Sign In to add comment