Arjay Angeles

Results 436 comments of Arjay Angeles

It seems like this is not yet supported by the builder. Will try to implement this when I got the chance. Please do not hesitate to submit a PR if...

Hmm, I think you need to overwrite the render method and exclude the pjax request. ```php public function render($view, $data = [], $mergeData = []) { if ($this->request()->ajax() && $this->request()->wantsJson()...

I think you got this right. Eager load is not yet part of `filter` method. ATM, maybe try something as a workaround. Pass true on 2nd argument of filter method...

Sorry for late response. Will try to review this as soon as I can. Thanks!

@dima-bzz can you please elaborate the difference of this PR from `multi_term` search? Can you please provide some use case? Thanks!

@dima-bzz thanks for elaborating. What you described should be the functionality of multi-term and thus it might be a bug on the current implementation. Maybe we should apply your PR...

@dima-bzz a bit busy atm and can't find time to review this yet. Will try to give this some time within the week. Or if anyone in the community can...

@affaron thank you for investigating. This is currently a package limitation and doesn't work yet with a self-join relationship. If you can add a support for it, please do not...

This issue was already fixed on v8. It's compatible to Laravel 5.4 but have breaking changes. Note though that it's not yet tagged as stable. Thanks!

The issue here is on translate relation right? ```php public function translate() { return $this->hasOne(FoodTranslator::class,'food_id') ->where('lang',app()->getLocale()); } ``` The issue is the where clause not applied? This was addressed on...