*/ public function toArray(Request $request): array { return [ 'id' => $this->id, 'author_name' => $this->author_name ?? '', 'content' => $this->content ?? '', 'created_at' => $this->created_at?->toDateTimeString(), ]; } }