PHPackages                             sygmaa/grids - 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. sygmaa/grids

AbandonedArchivedLibrary[Admin Panels](/categories/admin)

sygmaa/grids
============

A Datagrid widget for laravel 5. It easily generate datatables from your entities.

82.3k[1 issues](https://github.com/sygmaa/grids/issues)PHP

Since Apr 15Pushed 10y ago2 watchersCompare

[ Source](https://github.com/sygmaa/grids)[ Packagist](https://packagist.org/packages/sygmaa/grids)[ RSS](/packages/sygmaa-grids/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependenciesVersions (1)Used By (0)

Grids
=====

[](#grids)

Grids is a datagrid widget for laravel 5. It easily generate datatables from your entities. The generated HTML use Twitter Bootstrap, but you can override templates.

Comming soon
------------

[](#comming-soon)

- A demo with more examples
- CSV/Exel export
- Possibility to extend the plugin, and add custom fields
- Styling fields
- And more...

Install
-------

[](#install)

First, add this in your **composer.json**

```
  "require": {
    "sygmaa/grids": "dev-master"
  }

```

Then, add a new Service provider in your **config/app.php** :

`'Sygmaa\Grids\GridsServiceProvider',`

And for the Facade :

`'Grids' => 'Sygmaa\Grids\GridsFacade',`

After, if you want override views or languages, you can run this command :

`php artisan vendor:publish`

Then, you must add these lines in your template :

```
    {!! Grids::head() !!}
    {!! Grids::styles() !!}
    {!! Grids::scripts() !!}
```

Simple example
--------------

[](#simple-example)

In your controller :

```
$grid = Grids::make(new Model())
    // Pagination; 15 is the number of results to show by page
    ->paginate(15)
    // Show a reset button to clear filters (In the filter form)
    ->reset()
    // You can add a condition...
    ->where('field', ''. $label .'';
    })); // Add
```

And the template :

```

    {!! $grid->renderFilters() !!}

        {!! $grid->renderTable() !!}

                {{ $grid->renderPaginationInfos() }}

                {!! $grid->renderPagination() !!}

```

License
-------

[](#license)

Grids in under a [MIT License](http://opensource.org/licenses/MIT).

###  Health Score

24

—

LowBetter than 32% of packages

Maintenance18

Infrequent updates — may be unmaintained

Popularity21

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity41

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% 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/3020abd9dac9bdb6509b5a7bb9369c6cc9b20f37c7aef08ab0c68a53dd912456?d=identicon)[sygmaa](/maintainers/sygmaa)

---

Top Contributors

[![kevin-dumont](https://avatars.githubusercontent.com/u/7512198?v=4)](https://github.com/kevin-dumont "kevin-dumont (17 commits)")

### Embed Badge

![Health badge](/badges/sygmaa-grids/health.svg)

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

###  Alternatives

[jeroennoten/laravel-adminlte

Easy AdminLTE integration with Laravel

4.0k4.8M43](/packages/jeroennoten-laravel-adminlte)[dmstr/yii2-adminlte-asset

AdminLTE backend theme asset bundle for Yii 2.0 Framework

1.1k1.8M67](/packages/dmstr-yii2-adminlte-asset)[dwij/laraadmin

LaraAdmin is a Open source Laravel Admin Panel / CMS which can be used as Admin Backend, Data Management Tool or CRM boilerplate for Laravel with features like CRUD Generation, Module Manager, Media, Menus, Backups and much more

1.6k68.7k](/packages/dwij-laraadmin)[filament/spatie-laravel-media-library-plugin

Filament support for `spatie/laravel-medialibrary`.

1764.8M125](/packages/filament-spatie-laravel-media-library-plugin)[bezhansalleh/filament-exceptions

A Simple &amp; Beautiful Pluggable Exception Viewer for FilamentPHP's Admin Panel

193195.9k13](/packages/bezhansalleh-filament-exceptions)[filament/infolists

Easily add beautiful read-only infolists to any Livewire component.

1220.8M36](/packages/filament-infolists)

PHPackages © 2026

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