laravel-datatables-docs icon indicating copy to clipboard operation
laravel-datatables-docs copied to clipboard

Laravel DaTatables package documentation

Results 12 laravel-datatables-docs issues
Sort by recently updated
recently updated
newest added

'options' => [ 'searching' => true, 'paging' => true, 'info' => false, 'language' => [ 'sSearch' => '', 'searchPlaceholder' => 'Search', 'info' => '_START_ - _END_ of _TOTAL_', 'sLengthMenu' =>...

Remove limit and offset before executing aggregate (count) query

``` public function dataTable(QueryBuilder $query, Request $request): EloquentDataTable { return (new EloquentDataTable($query)) ->addColumn('title',fn($query) => "$query->makeTitle $query->makeModelTitle $query->year") ->addColumn('body type',fn($query) => $query->bodyTypeTitle) ->addColumn('price', fn($query) => $query->price) ->addColumn('image', function($query) { $image =...

where is old documention of Yajra Laravel DataTables..where all example is available with source code??

Is there any way to make the table responsive? When resizing the page the data goes outside the table view. ![image](https://user-images.githubusercontent.com/25540843/232109805-d4474b1f-9482-473e-85df-d90ba38cfab8.png)

https://yajrabox.com/docs/laravel-datatables/9.0/installation Service Implementation item leads to a 404 : https://datatables.yajrabox.com/service

In the below method I want to return joined tables data. is there any documentation to refere please ```php public function query(User $model): QueryBuilder { return $model->newQuery(); } ``` The...

Hello, I got the error when trying to return more than 10k+ of records. Error: "PHP Fatal error: Allowed memory size of 134217728 bytes exhausted". Is there any solution for...

question

Look this code ``` public function plex_cliente_datatables() { $clientes = PlexCliente::query(); return DataTables::eloquent($clientes->with('servicos_alias')) ->addColumn('servicos_alias', function(PlexCliente $c) { $servicos = null; foreach($c->servicos_alias as $servico) { $servicos .= $servico->id . ($servico->alias ?...