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

ActiveLibrary

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

Add columns to create and Update resources

2.0.1(2y ago)086MITVuePHP &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 1mo ago

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 49% 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

809d 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

[optimistdigital/nova-multiselect-field

A multiple select field for Laravel Nova.

3403.5M7](/packages/optimistdigital-nova-multiselect-field)[coreproc/nova-notification-feed

A Laravel Nova package that adds a notification feed in your Nova app.

10149.1k](/packages/coreproc-nova-notification-feed)[inspheric/nova-defaultable

Default values for Nova fields when creating resources and running resource actions.

51174.8k1](/packages/inspheric-nova-defaultable)[cybercog/laravel-nova-ban

A Laravel Nova banning functionality for your application.

40199.8k](/packages/cybercog-laravel-nova-ban)[insenseanalytics/nova-server-monitor

A Laravel Nova tool for Spatie's Server Monitor library.

6546.9k](/packages/insenseanalytics-nova-server-monitor)[datomatic/nova-detached-actions

A Laravel Nova tool to allow for placing actions in the Nova toolbar detached from the checkbox selection mechanism.

11229.2k](/packages/datomatic-nova-detached-actions)

PHPackages © 2026

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