*/ public function toArray(Request $request): array { return [ 'id' => $this->id, 'commentable_type' => $this->commentable_type, 'commentable_id' => $this->commentable_id, 'author_name' => $this->author_name, 'content' => $this->content, 'rating' => $this->rating, 'is_approved' => $this->is_approved, 'admin_reply' => $this->admin_reply, 'created_at' => $this->created_at?->toISOString(), 'updated_at' => $this->updated_at?->toISOString(), ]; } }