rappasoft/laravel-livewire-tables
Laravel Livewire Tables provides dynamic, feature-rich data tables for Laravel Livewire with sorting, searching, filtering, pagination, bulk actions, and Bootstrap/Tailwind support. Build reusable table components backed by Eloquent queries.
You must implement the configure method on your component.
public function configure(): void {}
The only configuration method that is required is setPrimaryKey.
public function configure(): void {
$this->setPrimaryKey('id');
}
The primary key is a field on your model that acts as a unique identifier for the row. I.e. an ID, a UUID, etc.
How can I help you explore Laravel packages today?