Fix bug in Eloquent to_array method.
This commit is contained in:
@@ -617,6 +617,8 @@ abstract class Model {
|
|||||||
// to_array method, keying them both by name and ID.
|
// to_array method, keying them both by name and ID.
|
||||||
elseif (is_array($models))
|
elseif (is_array($models))
|
||||||
{
|
{
|
||||||
|
$attributes[$name] = array();
|
||||||
|
|
||||||
foreach ($models as $id => $model)
|
foreach ($models as $id => $model)
|
||||||
{
|
{
|
||||||
$attributes[$name][$id] = $model->to_array();
|
$attributes[$name][$id] = $model->to_array();
|
||||||
|
|||||||
Reference in New Issue
Block a user