Ejemplo n.º 1
0
 /**
  * Create or update a record matching the attributes, and fill it with values.
  *
  * @param array $attributes
  * @param array $values
  * @return static 
  * @static 
  */
 public static function updateOrCreate($attributes, $values = array())
 {
     //Method inherited from \Illuminate\Database\Eloquent\Model
     return \Webpatser\Countries\Countries::updateOrCreate($attributes, $values);
 }