*/ public function toArray(Request $request): array { return [ 'id' => $this->id, 'comment' => $this->comment, 'user' => [ 'id' => $this->user->id, 'name' => $this->user->fullname, ], 'created_at' => $this->created_at, ]; } }