Nico

Results 6 comments of Nico

I am experiencing the exact same problem. My master table `books` has a `title` column. The related table `categories` also has a column called `title`. As soon as I click...

Update: its fixed if I do this: ```php $with = [ 'author', 'origin', 'category' ]; return datatables()->eloquent(Book::select([ 'books.*', ])->with($with))->toJson(); ```

I had some trouble setting up my dev environment. I am using webpack via Laravels mix configuration. The import instructions from the docs work for me excpet I get a...

Is there any activity on this? Or can someone point out where the issue could be? I might be able to come up with a fix.

I did some more testing and my PR did not seem to resolve the issue completely. I have to take another look. Right now live syncing does not happen, only...