whereDate('created_at', now()->today())->distinct()->count('ip'); } /* * 어제 방문자 수 */ public function yesterdayCount(): int { return $this->whereDate('created_at', now()->yesterday())->distinct()->count('ip'); } /* * 누적 방문자 수 */ public function totalCount(): int { return $this->distinct()->count('ip'); } }