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

ActiveLibrary[Admin Panels](/categories/admin)

nibri10/nova-grid
=================

Add coluns to create and Update resources

1.0.5(4y ago)2341.4k↓31.7%14[2 PRs](https://github.com/nibri10/nova-grid/pulls)1MITVuePHP &gt;=7.1.0

Since Oct 25Pushed 1y ago2 watchersCompare

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

READMEChangelog (7)Dependencies (1)Versions (6)Used By (1)

\#Based on this package that was dropped by the author

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.

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

[](#installation)

You can install the package via composer:

```
composer require nibri10/nova-grid

```

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

```
use Nibri10\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(),
        ];
    }
```

###  Health Score

39

—

LowBetter than 86% of packages

Maintenance29

Infrequent updates — may be unmaintained

Popularity40

Moderate usage in the ecosystem

Community19

Small or concentrated contributor base

Maturity56

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 75% 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 ~125 days

Recently: every ~154 days

Total

6

Last Release

1769d ago

### Community

Maintainers

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

---

Top Contributors

[![nibri10](https://avatars.githubusercontent.com/u/22533877?v=4)](https://github.com/nibri10 "nibri10 (15 commits)")[![Blindmikey](https://avatars.githubusercontent.com/u/115122?v=4)](https://github.com/Blindmikey "Blindmikey (3 commits)")[![bernhardh](https://avatars.githubusercontent.com/u/642292?v=4)](https://github.com/bernhardh "bernhardh (1 commits)")[![C14r](https://avatars.githubusercontent.com/u/567569?v=4)](https://github.com/C14r "C14r (1 commits)")

---

Tags

laravelnova

### Embed Badge

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

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

###  Alternatives

[benjacho/belongs-to-many-field

belongsToMany nova representation in field.

158811.4k1](/packages/benjacho-belongs-to-many-field)[pdmfc/nova-action-button

A Laravel Nova field to run actions.

37733.0k1](/packages/pdmfc-nova-action-button)[khalin/nova-link-field

A Laravel Nova Link field.

31562.2k2](/packages/khalin-nova-link-field)[ebess/nova-collapsible-sidebar

A collapsible sidebar for Laravel Nova.

32313.2k](/packages/ebess-nova-collapsible-sidebar)

PHPackages © 2026

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