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

ActiveLibrary[Admin Panels](/categories/admin)

s-patompong/nova-grid
=====================

Add columns to create and Update resources

2.0.1(2y ago)089MITVuePHP &gt;=7.1.0

Since Oct 25Pushed 2y agoCompare

[ Source](https://github.com/s-patompong/nova-grid)[ Packagist](https://packagist.org/packages/s-patompong/nova-grid)[ RSS](/packages/s-patompong-nova-grid/feed)WikiDiscussions master Synced today

READMEChangelogDependenciesVersions (9)Used By (0)

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

27

—

LowBetter than 47% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity9

Limited adoption so far

Community11

Small or concentrated contributor base

Maturity58

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 65.2% 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 ~225 days

Recently: every ~275 days

Total

8

Last Release

862d ago

Major Versions

1.0.5 → 2.0.02024-02-21

### Community

Maintainers

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

---

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)")[![pond-tc](https://avatars.githubusercontent.com/u/161486681?v=4)](https://github.com/pond-tc "pond-tc (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/s-patompong-nova-grid/health.svg)

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

###  Alternatives

[david-griffiths/nova-dark-theme

A dark theme for Laravel Nova

71600.0k](/packages/david-griffiths-nova-dark-theme)[pdmfc/nova-action-button

A Laravel Nova field to run actions.

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

A Laravel Nova Link field.

31587.5k2](/packages/khalin-nova-link-field)[cloudcake/nova-fixed-bars

A Laravel Nova package to add a responsive and/or fixed sidebar and navigation bar to the Nova admin UI.

33214.4k2](/packages/cloudcake-nova-fixed-bars)[stephenlake/nova-fixed-bars

A Laravel Nova package to add a responsive and/or fixed sidebar and navigation bar to the Nova admin UI.

3377.9k](/packages/stephenlake-nova-fixed-bars)

PHPackages © 2026

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