Arjay Angeles
Arjay Angeles
@tad3j I think the issue is on your eager load subquery. It seems like the package does not support that yet. Try using something like: ```php $myModel = MyModel::query() ->select('my_models.*')...
@tad3j thanks for the feedback. I was able to fix **nested with** on master branch yesterday but only tested it up to 3 levels (`posts.user.country`). Will try to do more...
@d-arken good catch. Tagging for enhancement. If you can, please do not hesitate to submit a PR. Thanks!
Use the client-side excel button. Make sure you don't include the server-side button's script as it overrides the default excel button. Or rename the button to something else.
Quick answer, not supported as the `colvis` button does not support server-side implementation afaik. However, I think you can create a custom button for this. See https://github.com/yajra/laravel-datatables-buttons/blob/master/src/resources/assets/buttons.server-side.js#L160 for reference.
Laravel does support composite primary key afaik so you have to do saving manually like on your example. I think there are packages created for this purpose. A quick search...
Looks like a valid use case as defined in [oci_new_connect](https://www.php.net/manual/en/function.oci-new-connect.php). Maybe we use another config that will trigger this behavior? Just a rough idea, maybe we can add a `'cached'...
Maybe we can use the value set in the `->setRowId()` call? However, I think doing so will be a change in behavior. Some of our users expect what they see...
Can you provide snippets to reproduce the duplicates? I asked around my users and they haven't encountered any duplicates yet. Largest export so far is ~200k.
I tested your demo app using SQLite. I was able to filter 28 records and export yields to the same result. Filtered 1 and all 1k records, and got the...