Browse Source

Merge pull request #1170 from kapv89/patch-4

Added a method to fluently set belongs-to relation
Taylor Otwell 12 years ago
parent
commit
13a1c5daac
1 changed files with 13 additions and 0 deletions
  1. 13 0
      laravel/database/eloquent/relationships/belongs_to.php

+ 13 - 0
laravel/database/eloquent/relationships/belongs_to.php

@@ -112,5 +112,18 @@ class Belongs_To extends Relationship {
 	{
 		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;
+	}
 
 }