PHPackages                             laravilt/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. laravilt/tables

ActiveLibrary[Admin Panels](/categories/admin)

laravilt/tables
===============

Complete table system with columns, filters, sorting, bulk actions, and pagination. Build powerful data tables with search, filters, inline editing, row/bulk actions, and responsive mobile-friendly layouts.

1.0.6(2mo ago)2369↓45%12MITHTMLPHP ^8.3|^8.4CI passing

Since Dec 11Pushed 2mo agoCompare

[ Source](https://github.com/laravilt/tables)[ Packagist](https://packagist.org/packages/laravilt/tables)[ GitHub Sponsors](https://github.com/fadymondy)[ RSS](/packages/laravilt-tables/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (7)Dependencies (18)Versions (8)Used By (2)

[![tables](https://raw.githubusercontent.com/laravilt/tables/master/arts/screenshot.jpg)](https://raw.githubusercontent.com/laravilt/tables/master/arts/screenshot.jpg)

Laravilt Tables
===============

[](#laravilt-tables)

[![Latest Stable Version](https://camo.githubusercontent.com/18b8e5a0ef922a764e3ee9fd1009f61921f546f81bd40c9cedf97e727dfbc070/68747470733a2f2f706f7365722e707567782e6f72672f6c61726176696c742f7461626c65732f76657273696f6e2e737667)](https://packagist.org/packages/laravilt/tables)[![License](https://camo.githubusercontent.com/6faa5d608663bc2434cefb42cd67fc9c14c96a3f30747056c5a186dfd1dbf55a/68747470733a2f2f706f7365722e707567782e6f72672f6c61726176696c742f7461626c65732f6c6963656e73652e737667)](https://packagist.org/packages/laravilt/tables)[![Downloads](https://camo.githubusercontent.com/5a4f88cae75d361a83c63435882528169b8e0de78b2858a469a01fc42fc754c2/68747470733a2f2f706f7365722e707567782e6f72672f6c61726176696c742f7461626c65732f642f746f74616c2e737667)](https://packagist.org/packages/laravilt/tables)[![Dependabot Updates](https://github.com/laravilt/tables/actions/workflows/dependabot/dependabot-updates/badge.svg)](https://github.com/laravilt/tables/actions/workflows/dependabot/dependabot-updates)[![PHP Code Styling](https://github.com/laravilt/tables/actions/workflows/fix-php-code-styling.yml/badge.svg)](https://github.com/laravilt/tables/actions/workflows/fix-php-code-styling.yml)[![Tests](https://github.com/laravilt/tables/actions/workflows/tests.yml/badge.svg)](https://github.com/laravilt/tables/actions/workflows/tests.yml)

Complete table system with columns, filters, sorting, bulk actions, and pagination for Laravilt. Build powerful data tables with search, filters, inline editing, and row/bulk actions.

Features
--------

[](#features)

- 📊 **9 Column Types** - Text, Image, Badge, Icon, Select, Toggle, Color, Relationship, Custom
- 🔍 **5 Filter Types** - Text, Select, Multi-Select, Boolean, Date Range
- ↕️ **Sorting** - Multi-column sorting with direction control
- ✅ **Bulk Actions** - Select and perform actions on multiple rows
- 📄 **Pagination** - Built-in pagination with customizable page sizes
- 📱 **Responsive** - Mobile-friendly with column visibility control

Column Types
------------

[](#column-types)

ColumnDescription`TextColumn`Text display with formatting options`ImageColumn`Image thumbnails with lightbox`BadgeColumn`Status badges with colors`IconColumn`Boolean icons (check/x)`SelectColumn`Inline select editing`ToggleColumn`Inline toggle switches`ColorColumn`Color swatches`RelationshipColumn`Display related model data`CustomColumn`Custom Vue component renderingQuick Example
-------------

[](#quick-example)

```
use Laravilt\Tables\Table;
use Laravilt\Tables\Columns\TextColumn;
use Laravilt\Tables\Columns\BadgeColumn;
use Laravilt\Tables\Columns\ToggleColumn;
use Laravilt\Tables\Filters\SelectFilter;
use Laravilt\Tables\Actions\BulkAction;

Table::make()
    ->columns([
        TextColumn::make('name')
            ->searchable()
            ->sortable(),

        BadgeColumn::make('status')
            ->colors([
                'success' => 'active',
                'danger' => 'inactive',
            ]),

        ToggleColumn::make('is_featured'),
    ])
    ->filters([
        SelectFilter::make('status')
            ->options(['active', 'inactive']),
    ])
    ->toolbarActions([
        BulkAction::make('delete')
            ->label('Delete Selected')
            ->action(fn ($records) => $records->each->delete()),
    ]);
```

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

[](#installation)

```
composer require laravilt/tables
```

Generator Commands
------------------

[](#generator-commands)

```
php artisan make:table UserTable
php artisan make:table UserTable --actions
```

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

[](#documentation)

- **[Complete Documentation](docs/index.md)** - All column types, filters, and actions
- **[MCP Server Guide](docs/mcp-server.md)** - AI agent integration

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

46

—

FairBetter than 93% of packages

Maintenance83

Actively maintained with recent releases

Popularity20

Limited adoption so far

Community15

Small or concentrated contributor base

Maturity57

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 90.6% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~12 days

Recently: every ~18 days

Total

7

Last Release

85d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/2147eb2fca7ab5f0124d0fafd88ba2d2a5dfa3a0036fb8872d1084b7cba29366?d=identicon)[fadymondy](/maintainers/fadymondy)

---

Top Contributors

[![fadymondy](https://avatars.githubusercontent.com/u/11937812?v=4)](https://github.com/fadymondy "fadymondy (48 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (3 commits)")[![actions-user](https://avatars.githubusercontent.com/u/65916846?v=4)](https://github.com/actions-user "actions-user (1 commits)")[![swarakaka](https://avatars.githubusercontent.com/u/9349190?v=4)](https://github.com/swarakaka "swarakaka (1 commits)")

---

Tags

laravelinertiafilterssortingtablesvuecolumnsbulk actionslaraviltdata-tables

###  Code Quality

TestsPest

Static AnalysisPHPStan

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/laravilt-tables/health.svg)

```
[![Health](https://phpackages.com/badges/laravilt-tables/health.svg)](https://phpackages.com/packages/laravilt-tables)
```

###  Alternatives

[guava/filament-knowledge-base

A filament plugin that adds a knowledge base and help to your filament panel(s).

206120.5k1](/packages/guava-filament-knowledge-base)[archilex/filament-toggle-icon-column

A toggle icon column for Filament

53626.3k1](/packages/archilex-filament-toggle-icon-column)[geo-sot/filament-env-editor

Access .env file though Filament admin panel

2432.3k1](/packages/geo-sot-filament-env-editor)[andreia/filament-ui-switcher

Add a modal with options to switch between different UI layouts and styles (colors, fonts, font sizes).

233.8k](/packages/andreia-filament-ui-switcher)[a2insights/filament-saas

Filament Saas for A2Insights

161.1k](/packages/a2insights-filament-saas)[statikbe/laravel-filament-flexible-content-block-pages

A simple content page management system with a flexible content block builder based on the Filament flexible content blocks package.

121.1k](/packages/statikbe-laravel-filament-flexible-content-block-pages)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
