*/ public function toArray(Request $request): array { return [ 'id' => $this->id, 'question' => $this->question, 'answer' => $this->answer, 'category' => $this->category?->value, 'order_index' => $this->order_index, 'is_active' => $this->is_active, 'created_at' => $this->created_at?->toISOString(), 'updated_at' => $this->updated_at?->toISOString(), ]; } }