lunarphp / livewire-tables
Livewire Tables
Installs: 21 848
Dependents: 2
Suggesters: 0
Security: 0
Stars: 2
Watchers: 2
Forks: 2
Type:project
pkg:composer/lunarphp/livewire-tables
Requires
- php: ^8.1
 - livewire/livewire: ^2.0
 
Requires (Dev)
- laravel/pint: ^1.1
 - mockery/mockery: ^1.4.4
 - orchestra/testbench: ^7.0|^8.0
 - phpunit/phpunit: ^9.5
 
- dev-main
 - 0.x-dev
 - 0.8.x-dev
 - 0.8.2
 - 0.8.1
 - 0.8.0
 - 0.7.x-dev
 - 0.7.6
 - 0.7.5
 - 0.7.4
 - 0.7.3
 - 0.7.2
 - 0.7.1
 - 0.7.0
 - 0.6.x-dev
 - 0.6.4
 - 0.6.3
 - 0.6.2
 - 0.6.1
 - 0.6.0
 - 0.5.x-dev
 - 0.5.6
 - 0.5.5
 - 0.5.4
 - 0.5.3
 - 0.5.2
 - 0.5.1
 - 0.5.0
 - 0.4.x-dev
 - 0.4.2
 - 0.4.1
 - 0.4.0
 - 0.3.x-dev
 - 0.3.2
 - 0.3.1
 - 0.3.0
 - 0.3.0-beta.3
 - 0.3.0-beta.2
 - 0.3.0-beta
 - 0.3.0-alpha.3
 - 0.3.0-alpha.2
 - 0.3.0-alpha
 - 0.2.x-dev
 - 0.2.7
 - 0.2.6
 - 0.2.5
 - 0.2.4
 - 0.2.3
 - 0.2.2
 - 0.2.1
 - 0.2.0
 - 0.2-rc1
 - 0.1.x-dev
 - 0.1.6
 - 0.1.5
 - 0.1.4
 - 0.1.3
 - 0.1.2
 - 0.1.1
 - 0.1.0-rc.5
 - 0.1.0-rc.3
 - 0.1.0-rc.1
 - dev-0.7_0.8_branch_merge
 
This package is auto-updated.
Last update: 2025-10-09 12:59:33 UTC
README
Installation
composer require lunarphp/livewire-tables
Creating a table
<?php namespace App\Http\Livewire\Tables; use Lunar\LivewireTables\Components\Table; class OrdersTable extends Table { }
Features
Searching
To enable searching on the table, set the $searchable property to true.
/** * Whether this table is searchable. * * @var bool */ public $searchable = true;
This will enable a search box and add the query parameter whenever the search input is used.