PHPackages                             icetalker/filament-table-repeater - 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. [Utility &amp; Helpers](/categories/utility)
4. /
5. icetalker/filament-table-repeater

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

icetalker/filament-table-repeater
=================================

This is a package for Filament form component. Extends form Repeater, but shows in Table Layout.

v2.0.2(8mo ago)137198.0k↓55.2%27[6 issues](https://github.com/icetalker/filament-table-repeater/issues)[5 PRs](https://github.com/icetalker/filament-table-repeater/pulls)2MITPHPPHP ^8.2CI passing

Since Jun 30Pushed 2mo ago2 watchersCompare

[ Source](https://github.com/icetalker/filament-table-repeater)[ Packagist](https://packagist.org/packages/icetalker/filament-table-repeater)[ Docs](https://github.com/icetalker/filament-table-repeater)[ Fund](https://paypal.me/termlong)[ RSS](/packages/icetalker-filament-table-repeater/feed)WikiDiscussions 2.x Synced 3d ago

READMEChangelog (10)Dependencies (13)Versions (26)Used By (2)

[![](https://camo.githubusercontent.com/2bedf63f24cda7efab02da955dc11fb7ef8a060e2f26b73c33a7aac84529b8a3/68747470733a2f2f6769746875622d6164732e73332e65752d63656e7472616c2d312e616d617a6f6e6177732e636f6d2f737570706f72742d756b7261696e652e7376673f743d31)](https://supportukrainenow.org)

Repeater Component in Table layout for Filament Package
=======================================================

[](#repeater-component-in-table-layout-for-filament-package)

[![Latest Version on Packagist](https://camo.githubusercontent.com/accc202e912c4ac5dae8ffdfd2e9936e5d3ab33aa0b6ac0881e6caf09572c017/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f69636574616c6b65722f66696c616d656e742d7461626c652d72657065617465722e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/icetalker/filament-table-repeater)[![GitHub Tests Action Status](https://camo.githubusercontent.com/bf9444a9c728446e021221e0d29ef002f2c29dfc6365e772835c7aefc062f381/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f776f726b666c6f772f7374617475732f69636574616c6b65722f66696c616d656e742d7461626c652d72657065617465722f72756e2d74657374733f6c6162656c3d7465737473)](https://github.com/icetalker/filament-table-repeater/actions?query=workflow%3Arun-tests+branch%3Amain)[![GitHub Code Style Action Status](https://camo.githubusercontent.com/2645a357b5010b7739331b23c4bb6975748b216695e0fe260ae66d37077721e2/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f776f726b666c6f772f7374617475732f69636574616c6b65722f66696c616d656e742d7461626c652d72657065617465722f436865636b253230262532306669782532307374796c696e673f6c6162656c3d636f64652532307374796c65)](https://github.com/icetalker/filament-table-repeater/actions?query=workflow%3A%22Check+%26+fix+styling%22+branch%3Amain)[![Total Downloads](https://camo.githubusercontent.com/f85fc38f9a7d9b0f5fefa26d379a4c20bd302663d358eca8011839d7ce9c8632/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f69636574616c6b65722f66696c616d656e742d7461626c652d72657065617465722e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/icetalker/filament-table-repeater)

This is a package for Filament form component. Extends from Repeater, but display in Table Layout.

[![image](https://raw.githubusercontent.com/icetalker/filament-table-repeater/main/screenshots/filament-table-repeater-light.png)](https://raw.githubusercontent.com/icetalker/filament-table-repeater/main/screenshots/filament-table-repeater-light.png)

[![image](https://raw.githubusercontent.com/icetalker/filament-table-repeater/main/screenshots/filament-table-repeater-dark.png)](https://raw.githubusercontent.com/icetalker/filament-table-repeater/main/screenshots/filament-table-repeater-dark.png)

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

[](#installation)

You can install the package via composer:

```
composer require icetalker/filament-table-repeater
```

You can publish the views using

```
php artisan vendor:publish --tag="filament-table-repeater"
```

Usage
-----

[](#usage)

```
use Icetalker\FilamentTableRepeater\Forms\Components\TableRepeater;

protected function form(Form $form): Form
{
    return $form->schema([
        ...
        TableRepeater::make('items')
                ->relationship('items')
                ->schema([
                    Forms\Components\TextInput::make('product'),
                    ...
                ])
                ->reorderable()
                ->cloneable()
                ->collapsible()
                ->minItems(3)
                ->maxItems(5),

    ]);
}
```

> Since this component extends from `Filament\Forms\Components\Repeater`, you can use most of its methods, except for a few methods like `inset()`, `grid()`, `columns()`.

Other methods
-------------

[](#other-methods)

### colStyles

[](#colstyles)

To customize styles for each cell, you can pass an array of component name as key and css style as value to `colStyles()`. See example below:

```
use Icetalker\FilamentTableRepeater\Forms\Components\TableRepeater;

protected function form(Form $form): Form
{
    return $form->schema([
        ...
        TableRepeater::make('items')
            ->relationship('items')
            ->schema([
                Forms\Components\TextInput::make('product'),
                Forms\Components\TextInput::make('quantity'),
                ...
            ])
            ->colStyles([
                'product' => 'color: #0000ff; width: 250px;',
            ]),

    ]);
}
```

Besides, you can also pass a callback function to `colStyles()`. This may unlock more customization possibilities. See example below:

```
use Icetalker\FilamentTableRepeater\Forms\Components\TableRepeater;

protected function form(Form $form): Form
{
    return $form
        ->schema([
            ...
            Forms\Components\Grid::make(1)->schema([

                TableRepeater::make('items')
                    ->relationship('items')
                    ->schema([
                        Forms\Components\TextInput::make('product'),
                        Forms\Components\TextInput::make('quantity'),
                        ...
                    ])
                    ->colStyles(function(){
                        return [
                            'product' => 'color: #0000ff; width: 250px;',
                        ]
                    }),

            ]),

        ]);
}
```

Alternative
-----------

[](#alternative)

Since Filament v4, `Reapeater` Component has it own `table()` method. You could use it to achieve the same function if you are using the latest version.

Changelog
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](https://github.com/spatie/.github/blob/main/CONTRIBUTING.md) for details.

Security Vulnerabilities
------------------------

[](#security-vulnerabilities)

Please review [our security policy](../../security/policy) on how to report security vulnerabilities.

Credits
-------

[](#credits)

- [Martin Hwang](https://github.com/icetalker)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

58

—

FairBetter than 98% of packages

Maintenance74

Regular maintenance activity

Popularity51

Moderate usage in the ecosystem

Community21

Small or concentrated contributor base

Maturity71

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 ~68 days

Recently: every ~78 days

Total

20

Last Release

174d ago

Major Versions

v0.1.5 → v1.0.02023-03-14

v1.4 → v2.02025-07-29

PHP version history (3 changes)v0.1.0PHP ^8.0

v2.0PHP ~8.2

v2.0.1PHP ^8.2

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/106749492?v=4)[Martin Hwang](/maintainers/icetalker)[@icetalker](https://github.com/icetalker)

---

Top Contributors

[![icetalker](https://avatars.githubusercontent.com/u/106749492?v=4)](https://github.com/icetalker "icetalker (5 commits)")[![dependabot[bot]](https://avatars.githubusercontent.com/in/29110?v=4)](https://github.com/dependabot[bot] "dependabot[bot] (2 commits)")[![github-actions[bot]](https://avatars.githubusercontent.com/in/15368?v=4)](https://github.com/github-actions[bot] "github-actions[bot] (2 commits)")[![felipeArnold](https://avatars.githubusercontent.com/u/44820260?v=4)](https://github.com/felipeArnold "felipeArnold (1 commits)")

---

Tags

laravelfilamenticetalkerfilament-table-repeater

###  Code Quality

TestsPest

Code StylePHP CS Fixer

### Embed Badge

![Health badge](/badges/icetalker-filament-table-repeater/health.svg)

```
[![Health](https://phpackages.com/badges/icetalker-filament-table-repeater/health.svg)](https://phpackages.com/packages/icetalker-filament-table-repeater)
```

###  Alternatives

[codewithdennis/filament-select-tree

The multi-level select field enables you to make single selections from a predefined list of options that are organized into multiple levels or depths.

329530.5k29](/packages/codewithdennis-filament-select-tree)[ysfkaya/filament-phone-input

A phone input component for Laravel Filament

3161.3M25](/packages/ysfkaya-filament-phone-input)[awcodes/richer-editor

A collection of extensions and tools to enhance the Filament Rich Editor field.

3912.9k9](/packages/awcodes-richer-editor)[rawilk/filament-password-input

Enhanced password input component for filament.

52263.4k14](/packages/rawilk-filament-password-input)[schmeits/filament-character-counter

This is a Filament character counter TextField and Textarea form field for Filament v4 and v5

34226.4k13](/packages/schmeits-filament-character-counter)[tonegabes/filament-better-options

Filament form components for better radio and checkbox options.

1610.3k](/packages/tonegabes-filament-better-options)

PHPackages © 2026

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