'integer', 'download_count' => 'integer', ]; public function article() { return $this->belongsTo(Article::class); } public function incrementDownloadCount(): void { $this->increment('download_count'); } }