*/ public function toArray(Request $request): array { return [ 'id' => $this->id, 'title' => $this->title ?? '', 'content_short' => $this->content ? substr($this->content, 0, 50) : '', 'created_at' => $this->created_at?->toDateString() ?? '', 'comments_count' => $this->comments_count ?? 0, ]; } }