laravel-livewire-tables
laravel-livewire-tables copied to clipboard
A dynamic table component for Laravel Livewire
### 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",...
- 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...
### 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)) {...
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,...
### 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...
### 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  it fires...