$this->uuid, 'title' => $this->title, 'html' => $this->html, 'json' => $this->json, 'state' => $this->state, 'user' => $this->user, ]; } public function state() { return $this->belongsTo(DocumentState::class); } public function user() { return $this->belongsTo(User::class); } }