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

A dynamic table component for Laravel Livewire

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

### What happened? public function seller() { return $this->belongsTo(User::class, 'seller_id')->withTrashed(); } /** * Get order items * * @return object */ public function items() { return $this->hasMany(OrderItem::class, 'order_id'); } Column::make("Buyer",...

bug

- Clean up some typehinting errors - Specify the files to ignore PHPStan errors from ### All Submissions: * [ ] Have you followed the guidelines in our Contributing document?...

### What happened? If you set `$this->setPaginationDisabled();` the value of the selectAll checkbox is not updated correctly and always shows an empty result. ### How to reproduce the bug _No...

bug
wontfix

### What happened? Using a NumberFilter prevents the value in the input from being treated since NumberFilter::validate always returns false. ``` public function validate(float|int|string|array $value): float|int|string|false { if (is_array($value)) {...

bug

The Livewire column type doesn't have the `HasTitleCallback` trait, so you can't use `->title()`. ### All Submissions: * [x] Have you followed the guidelines in our Contributing document? * [x]...

### Overview As I'm working with NumberFilters (see issue #1999), I realized that the attributes that would be placed on the input are hardcoded in the view for that filter....

### What happened? After upgrading from v3.2.6 to v3.4.22, when using a table component that is lazy loaded, the browser developer console shows warnings and errors, whereas before the upgrade,...

bug

### Overview Would be nice tobe able to add more than one column for default sorting. ### Detailed explanation maybe just allowing for array to set sorting $this->setDefaultSort(['sort' => 'asc',...

### What happened? It seems the " 'default' => true" ist not working when applied in setThAttributes(); Expected behaviour: use default = true gives the same result when using default-colors...

bug

### What happened? I used `$this->setDelaySelectAllEnabled();` in `configure()`. When i click on "Select all" link, `$this->setDelaySelectAllEnabled();` behavior is ok, but when i select all via the checkbox ![image](https://github.com/user-attachments/assets/e942001e-87e6-491d-8f4d-f234d8cfbea7) it fires...

bug