checkIfCodeExists($value); //if it exists, return false! } /** * @return string */ public function message() { return 'Country code does not exist'; } /** * @return bool */ private function checkIfCodeExists($value) : bool { $country = Country::where('iso_3166_2', $value) ->orWhere('iso_3166_3', $value) ->exists(); if ($country) return true; return false; } }