Merge pull request #1170 from kapv89/patch-4
Added a method to fluently set belongs-to relation
This commit is contained in:
commit
13a1c5daac
|
@ -112,5 +112,18 @@ public function foreign_value()
|
|||
{
|
||||
return $this->base->get_attribute($this->foreign);
|
||||
}
|
||||
|
||||
/**
|
||||
* Bind an object over a belongs-to relation using its id.
|
||||
*
|
||||
* @return Eloquent
|
||||
*/
|
||||
|
||||
public function bind($id)
|
||||
{
|
||||
$this->base->fill(array($this->foreign => $id))->save();
|
||||
|
||||
return $this->base;
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in New Issue