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

ActiveLibrary

sahlowle/tables
===============

Community-maintained fork of Laravilt Tables with Laravel 13 support

v1.0.0(1mo ago)00MITHTMLPHP ^8.3

Since Jul 14Pushed 1mo agoCompare

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

READMEChangelog (1)Dependencies (18)Versions (2)Used By (0)

[![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

39

—

LowBetter than 84% of packages

Maintenance90

Actively maintained with recent releases

Popularity0

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity48

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 88.9% 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

Unknown

Total

1

Last Release

47d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/f883a306d3c9581df4c1dd02d95a9cf2003eaa7c22613ed2d3e712943f5202f9?d=identicon)[sahlowle](/maintainers/sahlowle)

---

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)")[![sahlowle](https://avatars.githubusercontent.com/u/35406282?v=4)](https://github.com/sahlowle "sahlowle (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/sahlowle-tables/health.svg)

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

###  Alternatives

[dedoc/scramble

Automatic generation of API documentation for Laravel applications.

2.2k14.2M148](/packages/dedoc-scramble)[spatie/laravel-pdf

Create PDFs in Laravel apps

1.0k6.1M53](/packages/spatie-laravel-pdf)[codewithdennis/filament-select-tree

The multi-level select field enables you to make single selections from a predefined list of options that are organized into multiple levels or depths.

331634.0k37](/packages/codewithdennis-filament-select-tree)[harris21/laravel-fuse

Circuit breaker for Laravel queue jobs. Protect your workers from cascading failures.

24795.1k](/packages/harris21-laravel-fuse)[vormkracht10/laravel-mails

Laravel Mails can collect everything you might want to track about the mails that has been sent by your Laravel app.

25263.1k](/packages/vormkracht10-laravel-mails)[lacodix/laravel-model-filter

A Laravel package to filter, search and sort models with ease while fetching from database.

17565.8k](/packages/lacodix-laravel-model-filter)

PHPackages © 2026

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