laravel-livewire-tables
laravel-livewire-tables copied to clipboard
A dynamic, responsive Laravel Livewire table component with searching, sorting, checkboxes, and pagination.
This code create a multiple searches, used to filter different values in different columns. Run method singleSearchable() in all columns you want filter. This create one tag for each column...
Hello, This livewire table is really awesome. If I am not wrong, you didn't add per page selection somewhere? Is it hard to add that? I know we can set...
I was getting frustrated by wanting columns formatted in a particular way, adding an accessor to the model, adding the accessor to the `$appends` of the model, then putting the...
I want to pass variable to livewire component. ` @livewire('livewire-component', ['type'=>'A']) ` ` public function mount($type) { $this->setTableProperties(); $this->type = $type; } ` It displayed error. ` Declaration of App\Http\Livewire\LivewireComponent::mount($type)...
With this is possible to set the like operator Specially in postgresql is important to allow the case-insensitive search use example: public function query() { $this->like_operator = 'ilike'; return Facultad::with('institucion');...
In other places where I check-all, I expect the operation to be limited to those in view. The action of checking all causes every model to be deleted, not just...
Laravel Framework 7.7.1, Laravel-livewire-tables: 1.6 ``` class InsiderFilingTable extends TableComponent { public $table_class = 'table-hover'; public $thead_class = 'thead-light'; public $checkbox = false; public $per_page = 20; public $searchable =...
I think we need option to disable search box.
Hi, This is an excellent table replacement for dataTables, however adding inline styles is not great, for example the click span has same inline style just to add a cursor...