i'm having an issue with how eloquent is formulation a query that i have no access to. When doing something like
$model->where('something')->distinct()->paginate();
eloquent runs a query to get the total count, and the query looks something like
select count(*) as aggregate from .....
The problem is that if you use distinct in the query, you want something like
select count(distinct id) as aggregate from .....
to get the correct total. Eloquent is not doing that though, thus returning wrong totals. The only way to get the distinct in count is to pass an argument through the query builder like so ->count('id') in which case it will add it. Problem is that this query is auto-generated and i have no control over it.
Is there a way to trick it into adding the distinct on the count query?
P.S I know that in SQL you could do a group by, but since i'm eager loading stuff it is not a good idea cause it will add a IN (number of id's found) to each of the other queries which slows things down significantly.
You will have to create the pagination object your-self. There is no real documentation for this on the website but take a look at the constructor arguments and you should be able to figure it out., if not someone on IRC should be able to help you
i just spoke with a bunch of people on IRC and they agree on the separate pagination but i don't. Reason is that Laravel creates that extra query outside of paginator, i.e. when you use eager loading. So, i'm hoping there is something i'm missing.
P.S. i got it working with the separate paginator well before i asked for help, i just feel that it is not the best way to go about it.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community