Browse Source

fix bug in fluent class.

Taylor Otwell 13 years ago
parent
commit
10ee41f3b3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      laravel/fluent.php

+ 1 - 1
laravel/fluent.php

@@ -37,7 +37,7 @@ class Fluent {
 	 */
 	public function get($attribute, $default = null)
 	{
-		return array_get($attributes, $attribute, $default);
+		return array_get($this->attributes, $attribute, $default);
 	}
 
 	/**