PHPackages                             keops007/nova-grid - 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. keops007/nova-grid

ActiveLibrary[Admin Panels](/categories/admin)

keops007/nova-grid
==================

Add coluns to create and Update resources

039[19 PRs](https://github.com/keops007/nova-grid/pulls)Vue

Since Jan 29Pushed 3y ago1 watchersCompare

[ Source](https://github.com/keops007/nova-grid)[ Packagist](https://packagist.org/packages/keops007/nova-grid)[ RSS](/packages/keops007-nova-grid/feed)WikiDiscussions master Synced 6d ago

READMEChangelogDependenciesVersions (20)Used By (0)

Grid Layout tool for Laravel Nova
=================================

[](#grid-layout-tool-for-laravel-nova)

This is a tool for Laravel's Nova administrator panel that allows you to create grids-based-layout for your resources. Created from the original

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

[](#installation)

You can install the package via composer:

```
composer require keops007/nova-grid

```

Then, you will need to register the tool within the `NovaServiceProvider.php`:

```
use Keops007\NovaGrid\NovaGrid;

...

/**
 * Get the tools that should be listed in the Nova sidebar.
 *
 * @return array
 */
public function tools()
{
    return [
        // other tools
        new NovaGrid,
    ];
}
```

Using this tool
---------------

[](#using-this-tool)

- After set the tool, all your fields now have access to an meta property `size` and the value is any of tailwind classes for sizes.

EXAMPLE
-------

[](#example)

```
public function fields(Request $request)
    {
        return [
            ID::make()->sortable(),

            Text::make('Name')
                ->size('w-1/3'),

            Select::make('Type')
                ->size('w-1/3')
                ->options(UserType::toSelectArray()),

            Text::make('Email')
                ->size('w-1/3')
                ->sortable()
                ->rules('required', 'email', 'max:254')
                ->creationRules('unique:users,email')
                ->updateRules('unique:users,email,{{resourceId}}', 'sometimes'),

            Password::make('Password')
                ->size('w-1/3')
                ->onlyOnForms()
                ->creationRules('required', 'string', 'min:6')
                ->updateRules('nullable', 'string', 'min:6', 'sometimes'),

            InlineSelect::make('Status')
                ->size('w-1/3')
                ->options(Setting::userStatuses())
                ->inlineOnIndex()
                ->fillUsing(function ($request, $model) {
                    $model->applyStatus($request->status);
                }),

            BelongsTo::make('Office')
                ->size('w-1/2')
                ->nullable(),
        ];
    }
```

Keep in mind that this is an 15 minutes work tool, so use carefully

###  Health Score

22

—

LowBetter than 22% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity45

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/b8aeaf72ec23c72372d343aa156e403cb8eeac0eeb6b2bc9199de98b6ac8e92d?d=identicon)[keops007](/maintainers/keops007)

---

Top Contributors

[![keops007](https://avatars.githubusercontent.com/u/56954895?v=4)](https://github.com/keops007 "keops007 (1 commits)")

### Embed Badge

![Health badge](/badges/keops007-nova-grid/health.svg)

```
[![Health](https://phpackages.com/badges/keops007-nova-grid/health.svg)](https://phpackages.com/packages/keops007-nova-grid)
```

###  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)
