laravel-livewire-tables
laravel-livewire-tables copied to clipboard
A dynamic table component for Laravel Livewire
### What happened? The version displayed in the '_**php artisan about**_' command is not the correct one. ### How to reproduce the bug 1. Install last version 2. Check installed...
## TESTS TO FOLLOW SHORTLY The filters have built-in validation, and return types defined within the built-in validation methods to ensure that the data type is returned is functional. This...
### What happened? We're trying to use a Blade component as a column: ``` ComponentColumn::make('Fine Content', 'fine_weight_ozt') ->component('weight-with-conversions') ->attributes(fn ($value, $row, Column $column) => [ 'weight' => new Weight($row->weighing_unit_type, $row->fine_weight),...
### What happened? published resources\views\vendor\rappasoft\livewire-tables\components\tools\toolbar\items\pagination-dropdown.blade.php and changed ``` 'select select-bordered w-full max-w-xs' => $component->isTailwind(), ``` It does not take effect, even if clearing cache etc. Editing the file in the...
### What happened? I have the table configured as follows: `public function configure(): void { $this->setPrimaryKey('id'); $this->setPerPage(25); $this->setSearchDisabled(); $this->setSearchDebounce(1000); $this->setDebugEnabled(); }` I have the columns configured as follows: ` Column::make("Firstnames")...
Fix misbehaviour with striping with Collapsed Columns ### All Submissions: * [ ] Have you followed the guidelines in our Contributing document? * [ ] Have you checked to ensure...
This PR adjusts the behaviour of the empty.blade.php, to consolidate the methods more cleanly. This also ensures that the "empty" behaviour is hidden - when there is a loading placeholder...
This fix is to add new methods for controlling the Loading Placeholder content for the table. This is currently in development, as tests need adjusting. ### setLoadingPlaceholderContent You may use...
### What happened? Hello, I've added `$this->setLoadingPlaceholderBlade('livewire/loaders/table-loader');` To my table, which loads the following HTML ``` ``` The loader shows in the table (In the wrong place) and also doesn't...
### What happened? Just see video, please: https://drive.google.com/file/d/1_st0p4Y9mrqneEfHWiOk3KN3GK7-MZqB/view?usp=drive_link Alpine: ```html ``` My table component: ```php