Fix bug in Eloquent to_array method.

This commit is contained in:
Taylor Otwell 2012-08-29 14:44:16 -05:00
parent e8046847c4
commit f34063c517
1 changed files with 2 additions and 0 deletions

View File

@ -617,6 +617,8 @@ public function to_array()
// to_array method, keying them both by name and ID.
elseif (is_array($models))
{
$attributes[$name] = array();
foreach ($models as $id => $model)
{
$attributes[$name][$id] = $model->to_array();