/**
  * Update the model in the database.
  *
  * @param array $attributes
  * @return bool|int 
  * @static 
  */
 public static function update($attributes = array())
 {
     //Method inherited from \Illuminate\Database\Eloquent\Model
     return \Webpatser\Countries\Countries::update($attributes);
 }