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

ActiveLibrary[Admin Panels](/categories/admin)

outl1ne/nova-table-field
========================

Table field for Laravel Nova

2.1.0(2y ago)4057.9k—4.8%35[1 issues](https://github.com/outl1ne/nova-table-field/issues)[1 PRs](https://github.com/outl1ne/nova-table-field/pulls)MITVuePHP ^8.0

Since Aug 24Pushed 2y ago3 watchersCompare

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

READMEChangelog (6)Dependencies (2)Versions (7)Used By (0)

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

[](#nova-table-field)

[![Latest Version on Packagist](https://camo.githubusercontent.com/c9498ccbccfba8410e2503582d97cade7451527bb78fb09b9a473600d558ff5d/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6f75746c316e652f6e6f76612d7461626c652d6669656c642e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/outl1ne/nova-table-field)[![Total Downloads](https://camo.githubusercontent.com/ce2d3db54dc0ff5b739e4c5c0169cf14f5b67dc129484a68d5938573fa3a46c4/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6f75746c316e652f6e6f76612d7461626c652d6669656c642e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/outl1ne/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 outl1ne/nova-table-field
```

Usage
-----

[](#usage)

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

```
use Outl1ne\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="Outl1ne\NovaTableField\FieldServiceProvider" --tag="translations"
```

You can then edit the strings to your liking.

###  Health Score

40

—

FairBetter than 88% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity45

Moderate usage in the ecosystem

Community17

Small or concentrated contributor base

Maturity64

Established project with proven stability

 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

Every ~226 days

Recently: every ~282 days

Total

6

Last Release

962d ago

Major Versions

1.0.3 → 2.0.02023-09-29

PHP version history (2 changes)1.0.0PHP &gt;=7.1.0

2.0.0PHP ^8.0

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/386999?v=4)[Allan Tatter](/maintainers/allantatter)[@allantatter](https://github.com/allantatter)

---

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

laravellaravel-novalaravel-nova-fieldlaraveltablesnovaoutl1ne

### Embed Badge

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

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

###  Alternatives

[optimistdigital/nova-table-field

Table field for Laravel Nova

40129.4k](/packages/optimistdigital-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)[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)
