mija

Results 7 comments of mija

same but in Laravel 6, what to do here?

Hi, I am encountering same need, Is there any update on this topic?

I used this as a solution as you mentioned `https://github.com/timgws/QueryBuilderParser/issues/26#issuecomment-363074369` `$query = DB::table(DB::raw("({$query->toSql()}) as t"))->mergeBindings($query);` I tried to override the package with your code #27 but It doesn't work as...

Hi My question was related on having an alias on my query then I cannot use WHERE anymore but HAVING. My solution was like @royduin suggested to put the query...

Hi guys, Unfortunately, the last solution is not good at all It loops for each record and builds tons of rows which makes it impossible, Trying to find other solutions......

Got a not a clean solution but works more efficiently. The idea is in the were using the subselect instead of the alias in the HAVING statement. STEPS: 1. First...

Same probem as [yllndritb](https://github.com/yllndritb) any solution?