laravel-datatables
laravel-datatables copied to clipboard
jQuery DataTables API for Laravel
### Summary of problem or feature request I have columns e.g. `name`, `sku`, `stock`, `price`. I would like to whitelist `name` and `sku` for search. If this is done, other...
### Summary of problem or feature request Trying to utilize the export options. Export button shows up, however when clicked none of the excel/csv/pdf options are there. Below is a...
### Summary of problem I have a User datatable where I also display the Role name assigned to the user, for ACL I use Laratrust. key thing to note is...
When I'm doing: ```php $users = User::with('roles')->select('users.*'); ``` and return the datatable like this: ```php return Datatables::of($users) ->editColumn('name', function (User $user) { if (Auth::user()->can('edit_users')) { if ($user->hasRole('superadmin') && ! Auth::user()->hasRole('superadmin'))...
### For some reason, this method began to return an empty array, although there is data. Previously, it was the `of` method. If you replace it - it does not...
I have a laravel app that displays a table with YajraDatatable, the data are fetched from the mongoDB. I am using serverSide Datatables, the dataset has morethan 20k rows. It's...
Laravel 5.7 laravel-datatables 8.0 When using datatables as a service the ajax function gives this error Cloned the ajax() function into my QuoteDataTable class and replaced return $dataTable->toJson(); with return...
### Summary of problem or feature request Hi. I found a problem with export data using the post method. The result from file export produces empty data, but I don't...
it seems the issue https://github.com/yajra/laravel-datatables/issues/1231 is not fixed here is my issue for the same qus I am still having the same issue my request looks like ``` $query =...
I added a search in each column of the table using the initComplete method. But I need to change something, and I don't know how. 1. How to add search...