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

A dynamic table component for Laravel Livewire

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

Hello guys, I'm experiencing an issue with the relationship sorting. In my case I have: - Order model (various fields including order_status_id) - Order status model (id, name) The Order...

Case, I have to models - `User` and `Role`. `User` **belongsToMany** `Roles`. And I want to disblay all user roles with this column definition: ```php Column::make('User roles', 'roles.name') ->eagerLoadRelations() ->format(function...

wontfix

Allow `` column's alignment to change. Eg ```php ->setThAttributes(function(Column $column) { if ($column->isField('status')) { return [ 'class' => 'text-center', ]; } return []; })```

For the global searcher to work, words must be in the correct order and multiple words must be in the same field. With this change, you should be able to...

wontfix

while using MongoDB I get empty rows ### Transaction model ``` namespace App\Models; use Jenssegers\Mongodb\Eloquent\Model as MongodbModel; class Transaction extends MongodbModel { protected $connection = 'mongodb'; protected $collection = 'transactions';...

If image is optional field prevent alt text from displaying for empty img[src].

Hey there! There's an error when I'm trying to click on the 2nd (or any another) page. For example: we're building a table which will show last user's sessions Steps...

### All Submissions: * [x] Have you followed the guidelines in our Contributing document? * [x] Have you checked to ensure there aren't other open [Pull Requests](../../../pulls) for the same...

### Discussed in https://github.com/rappasoft/laravel-livewire-tables/discussions/894 Originally posted by **GermanZun** August 29, 2022 Hi. table-striped doesn't work for me on bootstrap. Even on the demo sample doesn't work and i can see...