save() public method

Save the field value(s) into the database.
public save ( Field $field )
$field Carbon_Fields\Field\Field The field to save.
Example #1
0
 /**
  * Delegate save to the field DataStore instance
  **/
 public function save()
 {
     return $this->store->save($this);
 }