I'm trying to ignore all my $appends in my User model just for one time. I need all those every time on my app but this one time I don't need it and it's slowing down the performance of my query. If any can helping I'll totally happy!
@lars6 the solution it's pretty much what @jcrnkovic said the problem is that if you have a collection, you need to loop through and call the method because only works in "a given model instance".
The correct method is makeHidden(array $attributes).