Arjay Angeles
Arjay Angeles
Encountered something similar but the slow response was due to a binary(blob) field being included in the response. Removing the blob field in select SQL fixes the issue. Do any...
Can you try removing the `longtext` in your select sql?
Thanks for this PR, I just encountered the same issue. Will also look in the package as this might be a bug.
@Luis-Goncalves-Searchprof nested relations is working but still have some issues. I am currently working on fixing ordering along with this PR https://github.com/yajra/laravel-datatables/pull/850. ATM, I must say that nested eager loading...
@Yarandi see https://github.com/yajra/laravel-datatables/issues/1137#issuecomment-314880393 for a possible fix on v7. Thanks!
I think this was not implemented. Actually, they can just set the `length` request to `-1` to get all the records. Given this, maybe you can create a middleware to...
I think this is an issue that can be fixed by setting the proper name on JS. Something like below. ```js columns: [ ... {data: 'child_table.name', name: 'childTable.name'} ] ```...
On the other hand, I think we can consider adding `Str::camel` so that it would work either way? Can you please submit a PR. ```js columns: [ ... {data: 'child_table.name',...
I think the biggest change done on collection was the fix for support on multiple column ordering. Will try to dig on this when I got the chance. Thanks for...
Just recalled, this might be causing the performance issue: ```php $this->collection = $this->collection ->map(function ($data) { return array_dot($data); }) ->sort($sorter) ->map(function ($data) { foreach ($data as $key => $value) {...