Browse Source

Added a method to fluently set belongs-to relation

This method spun off from a discussion in IRC. What this enables is this:

$user->comments()->insert($comment_data)->article()->bind($article->id)
kapil verma 12 years ago
parent
commit
55ad4e9a6d
1 changed files with 16 additions and 0 deletions
  1. 16 0
      laravel/database/eloquent/relationships/belongs_to.php

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

@@ -110,5 +110,21 @@ 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)
+	{
+		if((int) $this->foreign_value() === (int) $id)
+			return $this->base;
+
+		$this->base->fill(array($this->foreign => $id))->save();
+
+		return $this->base;
+	}
 
 }