Skip to content
Advertisement

Sorting by eloquent relationship in Laravel using DataTables

I’m trying to use DataTables to display list of Application model. Application model has operations:

JavaScript

Operations model has state:

JavaScript

and operation author (user):

JavaScript

To enable datatable i’m using this code:

JavaScript

ApplicationController is serving data using this code

JavaScript

And finally a problem – table is rendering properly, but when I try to sort by another column than the first one I receive warning:

DataTables warning: table id=applications-table – Requested unknown parameter ‘operations.0.correspondence’ for row 0.

Honestly, I have no idea how to make it work. Thank you in advance.

Advertisement

Answer

Fixed by using DB::table

JavaScript
User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement