laravel datatable relationships
问题 So in this app Drawing belongsTo Customer . I have datatable <table id='drawing-table' class="table table-bordered table-hover"> <thead> <tr> <th>Drawing number</th> <th>Customer</th> </tr> </thead> </table> which indicates $darwing->number and $customer->title . To load info I use yajra\Datatables\Datatables; . Data is loaded with this JS method: $(function () { $('#drawing-table').DataTable({ processing: true, serverSide: true, ajax: '{{route('drawings.datatable')}}', columns: [ { data: