PHPackages                             yourkey/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. yourkey/laravel-vue-good-table

ActiveLibrary

yourkey/laravel-vue-good-table
==============================

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

03PHP

Since Jan 28Pushed 2y agoCompare

[ Source](https://github.com/YourKey/laravel-vue-good-table)[ Packagist](https://packagist.org/packages/yourkey/laravel-vue-good-table)[ RSS](/packages/yourkey-laravel-vue-good-table/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (1)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

13

—

LowBetter than 1% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity3

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity19

Early-stage or recently created project

 Bus Factor1

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

### Community

Maintainers

![](https://www.gravatar.com/avatar/10fb46f9ca2ed0215de407899fbcdc5431a6c1f843724b9e22c2b5d5e1668d13?d=identicon)[YourKey](/maintainers/YourKey)

---

Top Contributors

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

### Embed Badge

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

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

PHPackages © 2026

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