PHPackages                             lancodev/nova-table-field - 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. lancodev/nova-table-field

ActiveLibrary[Admin Panels](/categories/admin)

lancodev/nova-table-field
=========================

Table field for Laravel Nova

1.0(2y ago)0566MITVuePHP ^8.0

Since Mar 15Pushed 2y agoCompare

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

READMEChangelog (1)Dependencies (2)Versions (2)Used By (0)

Nova Table Field
================

[](#nova-table-field)

[![Latest Version on Packagist](https://camo.githubusercontent.com/71dd9c418804ffb34060d53f9af3de7efb3f1dadc89694755581ff6d53318974/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f4c616e636f6465762f6e6f76612d7461626c652d6669656c642e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/Lancodev/nova-table-field)[![Total Downloads](https://camo.githubusercontent.com/75aa833d17980edf1d33ac27ccf506a8109b37e69356cb26dab48cbfcd67b04c/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f4c616e636f6465762f6e6f76612d7461626c652d6669656c642e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/Lancodev/nova-table-field)

Simple [Laravel Nova](https://nova.laravel.com) Table field.

### Form View

[](#form-view)

[![Form View GIF](docs/form.gif)](docs/form.gif)

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

[](#installation)

Install the package in a Laravel Nova project via Composer:

```
composer require Lancodev/nova-table-field
```

Usage
-----

[](#usage)

The `Table` field provides a convenient interface to edit rows and columns stored inside `JSON` equivalent column.

```
use Lancodev\NovaTableField\Table;

public function fields(Request $request)
{
    return [
        Table::make('Countries')

        // Optional:
        ->disableAdding() // Disable adding new rows and columns
        ->disableDeleting() // Disable deleting rows and columns
        ->minRows(1) // The minimum number of rows in the table
        ->maxRows(10) // The maximum number of rows in the table
        ->minColumns(1) // The minimum number of columns in the table
        ->maxColumns(10) // The maximum number of columns in the table
        ->defaultValues([ // Default values for new rows
            ['column_1', 'column_2'], // This is a row
            ['column_3', 'column_4'], // This is a row
        ])
    ];
}
```

Note that you also have to cast the `JSON` data to `array` in your model

```
protected $casts = ['countries' => 'array'];

```

Localization
------------

[](#localization)

The translations file can be published by using the following publish command:

```
php artisan vendor:publish --provider="Lancodev\NovaTableField\FieldServiceProvider" --tag="translations"
```

You can then edit the strings to your liking.

###  Health Score

25

—

LowBetter than 37% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity15

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity46

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 50% 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

Unknown

Total

1

Last Release

794d ago

### Community

Maintainers

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

---

Top Contributors

[![allantatter](https://avatars.githubusercontent.com/u/386999?v=4)](https://github.com/allantatter "allantatter (6 commits)")[![Nembie](https://avatars.githubusercontent.com/u/47114030?v=4)](https://github.com/Nembie "Nembie (3 commits)")[![Nks](https://avatars.githubusercontent.com/u/349293?v=4)](https://github.com/Nks "Nks (3 commits)")

---

Tags

laraveltablesnovalancodev

### Embed Badge

![Health badge](/badges/lancodev-nova-table-field/health.svg)

```
[![Health](https://phpackages.com/badges/lancodev-nova-table-field/health.svg)](https://phpackages.com/packages/lancodev-nova-table-field)
```

###  Alternatives

[outl1ne/nova-table-field

Table field for Laravel Nova

4057.9k](/packages/outl1ne-nova-table-field)[khalin/nova-link-field

A Laravel Nova Link field.

31562.2k2](/packages/khalin-nova-link-field)[digital-creative/nova-dashboard

The missing dashboard for nova.

7169.3k1](/packages/digital-creative-nova-dashboard)[harrald/nova-combobox-filter

A Laravel Nova combobox filter. Supports selecting multiple items

13105.5k](/packages/harrald-nova-combobox-filter)[marianvlad/nova-ssl-card

A Laravel Nova card for SSL certificates.

1219.9k](/packages/marianvlad-nova-ssl-card)

PHPackages © 2026

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