lunarphp / livewire-tables
Livewire Tables
0.8.2
2024-01-15 09:01 UTC
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
This package is auto-updated.
Last update: 2026-06-09 14:27:08 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.