'datetime', ]; public function isActive(): bool { return $this->status === 'active'; } public function hit(): void { $this->increment('clicks'); $this->update(['last_clicked_at' => now()]); } }