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

View File

@@ -617,6 +617,8 @@ abstract class Model {
// 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();