Table Repeatable Entry
An infolist entry used to display a RepetableEntry as a table.
Author:
Martin Hwang
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
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
Data Lens
Advanced Data Visualization for Laravel Filament - a premium reporting solution enabling custom column creation, sophisticated filtering, and enterprise-grade data insights within admin panels.
Padmission
Custom Fields
Eliminate custom field migrations forever. Let your users create and manage form fields directly in Filament admin panels with 20+ built-in field types, validation, and zero database changes.
Relaticle