Browse Source

Added ability to call Eloquent::with on a Relationship instance

Signed-off-by: JoostK <joost.koehoorn@gmail.com>
JoostK 12 years ago
parent
commit
fd1b76a296
1 changed files with 13 additions and 0 deletions
  1. 13 0
      laravel/database/eloquent/relationships/relationship.php

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

@@ -119,4 +119,17 @@ abstract class Relationship extends Query {
 		return array_unique($keys);
 	}
 
+	/**
+	 * The relationships that should be eagerly loaded by the query.
+	 *
+	 * @param  array  $includes
+	 * @return Relationship
+	 */
+	public function with($includes)
+	{
+		$this->model->includes = (array) $includes;
+
+		return $this;
+	}
+
 }