emild / laravel-livewire-tables
A dynamic table component for Laravel Livewire
Package info
github.com/emildayan/laravel-livewire-tables
Language:Blade
pkg:composer/emild/laravel-livewire-tables
Fund package maintenance!
1.21.3
2022-01-16 16:39 UTC
Requires
- php: ^7.4|^8.0
- illuminate/contracts: ^8.0
- livewire/livewire: ^2.6
- spatie/laravel-package-tools: ^1.4.3
Requires (Dev)
- ext-sqlite3: *
- orchestra/testbench: ^6.13
- phpunit/phpunit: ^9.3
- spatie/laravel-ray: ^1.9
- vimeo/psalm: ^4.4
This package is auto-updated.
Last update: 2026-05-17 02:10:55 UTC
README
A dynamic Laravel Livewire component for data tables.
Bootstrap 4 Demo | Bootstrap 5 Demo | Tailwind Demo | Demo Repository
Installation
You can install the package via composer:
composer require rappasoft/laravel-livewire-tables
Please see the rest of the installation instructions.
Usage
Read the documentation
Basic Example
<?php namespace App\Http\Livewire\Admin\User; use App\Domains\Auth\Models\User; use Illuminate\Database\Eloquent\Builder; use Rappasoft\LaravelLivewireTables\DataTableComponent; use Rappasoft\LaravelLivewireTables\Views\Column; class UsersTable extends DataTableComponent { public function columns(): array { return [ Column::make('Name') ->sortable() ->searchable(), Column::make('E-mail', 'email') ->sortable() ->searchable(), Column::make('Verified', 'email_verified_at') ->sortable(), ]; } public function query(): Builder { return User::query(); } }
See advanced example
To-do/Roadmap
- Bootstrap 4 Template
- Bootstrap 5 Template
- Sorting By Relationships
- User Column Selection
- Drag & Drop (beta)
- Column Search
- Greater Configurability
- Collection/Query Support
- Test Suite (WIP)
Testing
composer test
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please e-mail anthony@rappasoft.com to report any security vulnerabilities instead of the issue tracker.
Credits
License
The MIT License (MIT). Please see License File for more information.