diff --git a/laravel/fluent.php b/laravel/fluent.php index fbfaf57a..1c83b468 100644 --- a/laravel/fluent.php +++ b/laravel/fluent.php @@ -37,7 +37,7 @@ public function __construct($attributes = array()) */ public function get($attribute, $default = null) { - return array_get($attributes, $attribute, $default); + return array_get($this->attributes, $attribute, $default); } /**