download_type === 'link' ? ($this->download_url ?? '') : route('report.download', $this->id); return [ 'id' => $this->id, 'title' => $this->title, 'year' => $this->year, 'summary' => $this->summary, 'cover_image_url' => $this->cover_image ? asset('uploads/' . $this->cover_image) : null, 'published_at' => $this->published_at?->format('Y-m-d H:i:s'), 'download_type' => $this->download_type, 'download_url' => $downloadUrl, ]; } }