PHPackages                             luckykenlin/livewire-tables - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Admin Panels](/categories/admin)
4. /
5. luckykenlin/livewire-tables

ActiveLibrary[Admin Panels](/categories/admin)

luckykenlin/livewire-tables
===========================

livewire-tables

4.0.1(2y ago)92.0k2MITPHPPHP ^8.1|^8.2CI passing

Since Sep 9Pushed 1y ago1 watchersCompare

[ Source](https://github.com/luckykenlin/livewire-tables)[ Packagist](https://packagist.org/packages/luckykenlin/livewire-tables)[ Docs](https://github.com/luckykenlin/livewire-tables)[ GitHub Sponsors](https://github.com/luckykenlin)[ RSS](/packages/luckykenlin-livewire-tables/feed)WikiDiscussions main Synced today

READMEChangelog (10)Dependencies (10)Versions (21)Used By (0)

livewire-tables
===============

[](#livewire-tables)

[![Latest Version on Packagist](https://camo.githubusercontent.com/ac86f1005ac4d8acdcaac78724b3a9de7183dd132c72d3c545d481f32e702063/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6c75636b796b656e6c696e2f6c697665776972652d7461626c65732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/luckykenlin/livewire-tables)[![GitHub Tests Action Status](https://camo.githubusercontent.com/1645c9424c5a3935830fb7c8928b14388f541b467b75ecbb9804f3279f9897de/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f776f726b666c6f772f7374617475732f6c75636b796b656e6c696e2f6c697665776972652d7461626c65732f72756e2d74657374733f6c6162656c3d7465737473)](https://github.com/luckykenlin/livewire-tables/actions?query=workflow%3ATests+branch%3Amain)[![Total Downloads](https://camo.githubusercontent.com/d5babc8428b06a55c77bdd6646c5c5fdab5982f56633e8cc3fd326f1b9efe8d9/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6c75636b796b656e6c696e2f6c697665776972652d7461626c65732e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/luckykenlin/livewire-tables)

A dynamic livewire table component for laravel.

Requirements
------------

[](#requirements)

- [Laravel](https://laravel.com/docs)
- [Livewire](https://laravel-livewire.com/docs)
- [TailwindCSS](https://tailwindcss.com/docs)

Installation
------------

[](#installation)

You can install the package via composer:

```
composer require luckykenlin/livewire-tables
```

Documentation
-------------

[](#documentation)

Usage
-----

[](#usage)

### Creating Tables

[](#creating-tables)

To create a table component you draw inspiration from the below stub:

```
php artisan make:table UsersTable
```

To specific model use --model:

```
php artisan make:table UsersTable --model=User
```

```
