PHPackages                             underwear/laravel-vue-good-table - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. underwear/laravel-vue-good-table

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

underwear/laravel-vue-good-table
================================

Vue-good-table wrapper for Laravel. Server side tables without pain.

v1.5(3y ago)4016.7k12[3 issues](https://github.com/underwear/laravel-vue-good-table/issues)MITPHPPHP ^7.1|^8.0

Since Jun 25Pushed 2y ago1 watchersCompare

[ Source](https://github.com/underwear/laravel-vue-good-table)[ Packagist](https://packagist.org/packages/underwear/laravel-vue-good-table)[ RSS](/packages/underwear-laravel-vue-good-table/feed)WikiDiscussions master Synced 3d ago

READMEChangelog (7)Dependencies (1)Versions (8)Used By (0)

laravel-vue-good-table
======================

[](#laravel-vue-good-table)

Customizable table tool for Laravel, uses powerful [vue-good-table](https://xaksis.github.io/vue-good-table/). Server side tables without pain.

Supports pagination, filtering, searching, sorting. Inspired by Laravel Nova :)

[![til](https://camo.githubusercontent.com/6a85a31e39fca21dbe86a9a8ec6a3c9aacf22cdc3de6a80c667c7f676de47f09/68747470733a2f2f78616b7369732e6769746875622e696f2f7675652d676f6f642d7461626c652f6865726f2d696d6167652e706e67)](https://camo.githubusercontent.com/6a85a31e39fca21dbe86a9a8ec6a3c9aacf22cdc3de6a80c667c7f676de47f09/68747470733a2f2f78616b7369732e6769746875622e696f2f7675652d676f6f642d7461626c652f6865726f2d696d6167652e706e67)

Reqs
----

[](#reqs)

- Laravel 5.6+ or Laravel 6, Laravel 7, Laravel 8, Laravel 9
- Using Vue.js in your project

Usage example
-------------

[](#usage-example)

1. Use `InteractsWithVueGoodTable` trait in your controller and implement two methods: `getColumns()` and `getQuery()`.
2. Register two new routes.
3. Use Vue component `laravel-vue-good-table` wherever you want.

#### Controller:

[](#controller)

```
namespace App\Http\Controllers;

use LaravelVueGoodTable\InteractsWithVueGoodTable;
use LaravelVueGoodTable\Columns\Column;
use LaravelVueGoodTable\Columns\Date;
use Illuminate\Http\Request;
use App\User;

class TestController extends Controller
{
    use InteractsWithVueGoodTable;

    /**
     * Get the query builder
     *
     * @param Request $request
     *
     * @return Illuminate\Database\Eloquent\Builder
     */
    protected function getQuery(Request $request)
    {
        return User::query();
    }

    /**
     * Get the columns displayed in the table
     *
     * @return array
     */
    protected function getColumns(): array
    {
        return [
            Text::make('ID', 'id')
                ->sortable()
                ->searchable(),

            Text::make('Name', 'name')
                ->searchable(),

            Text::make('E-mail', 'email')
                ->searchable(),

            Date::make('Created At', 'created_at')
                ->sortable()
                ->dateOutputFormat('dd.MM.yyyy HH:mm:ss'),
        ];
    }
}
```

#### Routes:

[](#routes)

```
Route::get('/lvgt/config', 'TestController@handleConfigRequest');
Route::get('/lvgt/data', 'TestController@handleDataRequest');
```

#### Blade/HTML:

[](#bladehtml)

```

```

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

[](#installation)

```
composer require underwear/laravel-vue-good-table

```

See the full [Installation Guide in DOCUMENTATION.md](./DOCUMENTATION.md#installation)

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

[](#documentation)

See [DOCUMENTATION.md](./DOCUMENTATION.md)

Contributing
------------

[](#contributing)

Contributions are welcome!

Credits
-------

[](#credits)

- [Igor Filippov](https://github.com/underwear/)

License
-------

[](#license)

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

###  Health Score

37

—

LowBetter than 83% of packages

Maintenance19

Infrequent updates — may be unmaintained

Popularity33

Limited adoption so far

Community16

Small or concentrated contributor base

Maturity65

Established project with proven stability

 Bus Factor1

Top contributor holds 70.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

Every ~119 days

Recently: every ~179 days

Total

7

Last Release

1430d ago

Major Versions

v0.1-alpha → v1.02020-06-25

PHP version history (2 changes)v0.1-alphaPHP ^7.1

v1.4PHP ^7.1|^8.0

### Community

Maintainers

![](https://www.gravatar.com/avatar/48b5d9ece0bfb01bcfdc274b7fd27cacd3233c9cde71a2ddd4e1d4fcdc024d9a?d=identicon)[underwear](/maintainers/underwear)

---

Top Contributors

[![underwear](https://avatars.githubusercontent.com/u/4825406?v=4)](https://github.com/underwear "underwear (39 commits)")[![jgulledge19](https://avatars.githubusercontent.com/u/671767?v=4)](https://github.com/jgulledge19 "jgulledge19 (5 commits)")[![danielDigitalArt](https://avatars.githubusercontent.com/u/25100967?v=4)](https://github.com/danielDigitalArt "danielDigitalArt (4 commits)")[![radwantarhini](https://avatars.githubusercontent.com/u/18376135?v=4)](https://github.com/radwantarhini "radwantarhini (4 commits)")[![ludioao](https://avatars.githubusercontent.com/u/7070404?v=4)](https://github.com/ludioao "ludioao (3 commits)")

### Embed Badge

![Health badge](/badges/underwear-laravel-vue-good-table/health.svg)

```
[![Health](https://phpackages.com/badges/underwear-laravel-vue-good-table/health.svg)](https://phpackages.com/packages/underwear-laravel-vue-good-table)
```

###  Alternatives

[wireui/wireui

TallStack components

1.8k1.3M16](/packages/wireui-wireui)[livewire/volt

An elegantly crafted functional API for Laravel Livewire.

4195.3M84](/packages/livewire-volt)[ramonrietdijk/livewire-tables

Dynamic tables for models with Laravel Livewire

21147.4k](/packages/ramonrietdijk-livewire-tables)

PHPackages © 2026

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