PHPackages                             alp-develop/laravel-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. [PDF &amp; Document Generation](/categories/documents)
4. /
5. alp-develop/laravel-livewire-tables

ActiveLibrary[PDF &amp; Document Generation](/categories/documents)

alp-develop/laravel-livewire-tables
===================================

Full-featured reactive data tables for Laravel 10-13 and Livewire 3-4. Search, sort, filter, paginate, bulk actions, CSV export, dark mode, Tailwind &amp; Bootstrap themes.

v1.2.2(2mo ago)7841↓15.3%[1 issues](https://github.com/alp-develop/laravel-livewire-tables/issues)MITPHPPHP ^8.1CI passing

Since Mar 5Pushed 2mo ago3 watchersCompare

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

READMEChangelog (9)Dependencies (27)Versions (10)Used By (0)

Laravel Livewire Tables
=======================

[](#laravel-livewire-tables)

  ![Laravel Livewire Tables](art/banner.png)

 [![Tests](https://github.com/alp-develop/laravel-livewire-tables/actions/workflows/tests.yml/badge.svg)](https://github.com/alp-develop/laravel-livewire-tables/actions/workflows/tests.yml) [![Latest Stable Version](https://camo.githubusercontent.com/2f7674869a48788634569fdf619d1c02d5c8bb69e1d8ca7611cae078a7f60cc5/68747470733a2f2f706f7365722e707567782e6f72672f616c702d646576656c6f702f6c61726176656c2d6c697665776972652d7461626c65732f762f737461626c65)](https://packagist.org/packages/alp-develop/laravel-livewire-tables) [![License](https://camo.githubusercontent.com/4688ce2bd776eed402e239c54c2801ff4b866a5cda68e5437154963defe621b0/68747470733a2f2f706f7365722e707567782e6f72672f616c702d646576656c6f702f6c61726176656c2d6c697665776972652d7461626c65732f6c6963656e7365)](https://packagist.org/packages/alp-develop/laravel-livewire-tables)

> Full-featured, reactive data tables for Laravel. Search, sort, filter, paginate, export, bulk actions — zero JavaScript.

**Laravel** 10–13 | **Livewire** 3–4 | **PHP** 8.1–8.5 | **Tailwind** / **Bootstrap 5** / **Bootstrap 4** | Dark mode

---

Install
-------

[](#install)

### 1. Require the package

[](#1-require-the-package)

```
composer require alp-develop/laravel-livewire-tables
```

### 2. Publish and configure

[](#2-publish-and-configure)

```
php artisan vendor:publish --tag=livewire-tables-config
```

This creates `config/livewire-tables.php`. **This step is required** — the config defines the theme, colors, dark mode, and other essential settings.

### 3. Themes

[](#3-themes)

Set the theme in `config/livewire-tables.php`:

```
'theme' => 'tailwind',
```

ThemeValueAliasTailwind CSS`tailwind`—Bootstrap 5`bootstrap-5``bootstrap5`, `bootstrap`Bootstrap 4`bootstrap-4``bootstrap4`### 4. Tailwind only

[](#4-tailwind-only)

Add to your CSS: `[x-cloak] { display: none !important; }`

Quick Start
-----------

[](#quick-start)

```
php artisan make:livewiretable UsersTable User
```

```
