I just had a case where I did
In rare circumstances I would get a "could not call
This was puzzling as the call uses
In rare circumstances this would NOT return a collection because the
Read more
Читать далее...
$entity->TagRelations->pluckNamed('Tag', 'tag_id')->toArray()
.In rare circumstances I would get a "could not call
toArray()
on array" error.This was puzzling as the call uses
pluck()
in the implementation and because Tag
is uppercase, it will have $collectionOnEmpty=true
so it should return a collection. That's the name of the variable.In rare circumstances this would NOT return a collection because the
Tag
pointed at...Read more
Читать далее...