Table Repeatable Entry
CommunityAn infolist entry used to display a RepetableEntry as a table.
Author:
Martin Hwang
Package health
BetaAutomated checks of this plugin's Composer package
13 checks
-
Warning:
Current Laravel version supported
—
Package does not co-install with current Laravel
13.0; the newest co-installable line is12.0, which still receives active support but is not the current stable. -
Passed:
Current PHP version supported
—
Constraint
^8.2supports current PHP8.5. - Skipped: Current Symfony version supported
- Passed: Abandoned or archived — No consulted source marks the package abandoned (packagist, github).
- Warning: Commit and release recency — Low activity: last commit 352 days ago; last release 352 days ago.
-
Passed:
composer.lock not committed by library
—
composer.lockis absent from the released dist archive. - Passed: Dist archive is lean
- Failed: GitHub Actions pinned to SHA — View details on Plumb
- Passed: Open security advisories
- Passed: Dependabot PR responsiveness — No open Dependabot PRs.
- Failed: Dependabot or Renovate configured — No dependency updater configuration found. View details on Plumb
- Skipped: Dependency update cooldown configured
- Failed: Provides a security policy — View details on Plumb
filament/
namespace. Review the source and install at your own risk. Found
malware or an unresolved security issue the author won't
address?
Report it
.
Documentation
This is a Filament Infolists Component, use for display RepetableEntry as a table. In case you are using TableRepeater instead of RelationManager.
#Installation
You can install the package via composer:
composer require icetalker/filament-table-repeatable-entry
#Usage
namespace Icetalker\FilamentTableRepeater\Forms\Components;
TableRepeatableEntry::make('items')
->schema([
Infolists\Components\TextEntry::make('product'),
Infolists\Components\TextEntry::make('quantity'),
Infolists\Components\TextEntry::make('price'),
])
->columnSpan(2),
#Striped Row
To enable striped table rows, you can use the striped() method:
namespace Icetalker\FilamentTableRepeater\Forms\Components;
TableRepeatableEntry::make('items')
->schema([
Infolists\Components\TextEntry::make('product'),
Infolists\Components\TextEntry::make('quantity'),
Infolists\Components\TextEntry::make('price'),
])
->striped()
->columnSpan(2),
#Show Index
To show table row index, please use showIncdex():
namespace Icetalker\FilamentTableRepeater\Forms\Components;
TableRepeatableEntry::make('items')
->schema([
Infolists\Components\TextEntry::make('product'),
Infolists\Components\TextEntry::make('quantity'),
Infolists\Components\TextEntry::make('price'),
])
->striped()
->columnSpan(2),
#Changelog
Please see CHANGELOG for more information on what has changed recently.
#Contributing
Please see CONTRIBUTING for details.
#Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
#Credits
#License
The MIT License (MIT). Please see License File for more information.
The author
From the same author
ChatGPT Bot
Talk to ChatGPT Inside Filament.
Author:
Martin Hwang
Picker
A plugin that allows you to pick a value from a list of options.
Author:
Martin Hwang
Stepper
A Form Component for Number Input.
Author:
Martin Hwang
Table Repeater
Filament Repeater display in table layout.
Author:
Martin Hwang
Featured Plugins
A selection of plugins curated by the Filament team
Blueprint
Filament Blueprint is a premium Laravel Boost extension that helps AI agents produce accurate, detailed implementation plans and security reports for Filament apps.
Filament
Custom Dashboards
Let your users build and share their own dashboards with a drag-and-drop interface. Define your data sources in PHP and let them do the rest.
Filament
Spotlight Pro
Browse your Filament Panel with ease. Filament Spotlight Pro adds a Spotlight/Raycast like Command Palette to your Filament Panel.
Dennis Koch