where('mb_id', $mbId)->first(); } /** * mb_id 중복 여부 */ public function isIdExists(string $mbId): bool { return $this->where('mb_id', $mbId)->countAllResults() > 0; } }