laravel-livewire-tables icon indicating copy to clipboard operation
laravel-livewire-tables copied to clipboard

A dynamic, responsive Laravel Livewire table component with searching, sorting, checkboxes, and pagination.

Results 29 laravel-livewire-tables issues
Sort by recently updated
recently updated
newest added

` return [ Column::make('ID')->searchable()->sortable(), Column::make('Brand Name', 'brand.name')->searchable()->sortable(), Column::make('Name')->searchable()->sortable(), Column::make('Color')->searchable()->sortable()->view('cars.table-color'), Column::make('Accidents', 'accidents_count')->sortable(), Column::make()->view('cars.table-actions'), ]; ` i need passing another variable on ->view('cars.table-color') ->view('cars.table-color', ['var' => 1]) ===> not working

Hey I aready try to concat two values using an Accessor but I+m always getting this error, Column not found: 1054 Unknown column 'users.full_name' in 'field list'

Hello, Thank you for this package. I do have some issues though. I have these tables: coffees, roast_types, green_beans. In the Coffee model I have these relationships: ``` public function...

Is it possible to add as a feature the ability to export as pdf also based on the file extension and customizable filenames.

Is there a way to add a default sort to the view? I can't add it to the query as then it overrides the ability to sort by the other...

This is an amazing package, it's very handy - one thing I feel would be a great advantage would be to be able to make the row clickable to go...

How is it possible to sort by default by 2 fields? e.g. last_name, first_name

I am able to create the datatable easily and then my issue is when i select multiple rows through checkbox, i dont know how to create a button (e.g. an...