ilsyaa / lazyui-tables
A dynamic table component for Laravel Livewire
Fund package maintenance!
rappasoft
Requires
- php: ^8.1|^8.2|^8.3|^8.4
- illuminate/contracts: ^10.0|^11.0|^12.0
- illuminate/support: ^10.0|^11.0|^12.0
- livewire/livewire: ^3.0|dev-main
Requires (Dev)
- ext-sqlite3: *
- brianium/paratest: ^5.0|^6.0|^7.0|^8.0|^9.0
- larastan/larastan: ^2.6|^3.0
- laravel/pint: ^1.10
- monolog/monolog: *
- nunomaduro/collision: ^6.0|^7.0|^8.0|^9.0
- orchestra/testbench: ^7.0|^8.0|^9.0|^10.0
- phpunit/phpunit: ^9.0|^10.0|^11.0|^12.0
This package is auto-updated.
Last update: 2025-06-04 10:40:04 UTC
README
You can install the package via composer:
composer require ilsyaa/lazyui-tables
Documentation and Usage Instructions
See the documentation for detailed installation and usage instructions.
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 { protected $model = User::class; public function configure(): void { $this->setPrimaryKey('id'); } public function columns(): array { return [ Column::make('ID', 'id') ->sortable(), Column::make('Name') ->sortable(), ]; } }
Testing
composer test
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
License
The MIT License (MIT). Please see License File for more information.