skip to Main Content

Queation related to DataTables in laravel

i have the following code of backend $datatable->addColumn('product_quantity', function () { $quantities = TransactionSellLine::pluck('quantity')->all(); return $quantities; }); and I have the following code of frontend columns: [ { data: 'product', name: 'product' }, { data: 'product_quantity', "searchable": false, render: function…

VIEW QUESTION
Back To Top
Search