© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•3y ago•
3 replies
LucaCvg

RepeatableEntry on InfoList dont show any data

Hi everyone (I'm a beginner)! I have a problem, perhaps trivial, when I try to use a "RepeatableEntry" and "TextEntry" inside an "InfoList" with a relationship with two tables called "wbes" and "earned_values".

Inside the "WbeResource.php" write this code, but no data appears in the FE:

                Components\Section::make("REPEATER")
                    ->schema([
                        RepeatableEntry::make('earnedvalue')
                        ->schema([
                            TextEntry::make('id'),
                        ])
                        ])
                Components\Section::make("REPEATER")
                    ->schema([
                        RepeatableEntry::make('earnedvalue')
                        ->schema([
                            TextEntry::make('id'),
                        ])
                        ])


This is the "Wbe.php" model that contains a relationship:

    public function earnedvalue(): HasMany
    {
        return $this->hasMany(EarnedValue::class , 'id', 'wbe_id');
    }
    public function earnedvalue(): HasMany
    {
        return $this->hasMany(EarnedValue::class , 'id', 'wbe_id');
    }


This is the DB (earned_values) table:

id (PK)
practice_id (FK)
practice_manager_id (FK)
project_manager_id (FK)
wbe_id (FK)
name
id (PK)
practice_id (FK)
practice_manager_id (FK)
project_manager_id (FK)
wbe_id (FK)
name



In your opinion, where am I going wrong?
Thank you!
Solution
Hi, trying several times I couldn't get the "RepeatableEntry" to work. However I solved it differently using Filament's "Relation Manager". I hope it can be useful to all those like me who are beginners. Un esempio qui: https://www.youtube.com/watch?v=ReCxgWsSTBA&t=231s
YouTubeCode With Tony
13 Filament Relation Manager - FilamentPHP V3 Tutorial
In this tutorial, we're diving into the world of Laravel Filament and its powerful tool, the Relation Manager. Managing relationships in your Laravel application is a crucial aspect, and Filament's Relation Manager simplifies this process. Join us as we explore how to efficiently handle relationships, define connections, and optimize your applic...
13 Filament Relation Manager - FilamentPHP V3 Tutorial
Jump to solution
Filament banner
FilamentJoin
A powerful open source UI framework for Laravel • Build and ship admin panels & apps fast with Livewire
20,307Members
Resources
Was this page helpful?

Similar Threads

Recent Announcements

Similar Threads

infolist with RepeatableEntry
FilamentFFilament / ❓┊help
3y ago
RepeatableEntry does not show any data inside the array
FilamentFFilament / ❓┊help
3y ago
Infolist RepeatableEntry with an Array
FilamentFFilament / ❓┊help
9mo ago
Infolist RepeatableEntry view entry action.
FilamentFFilament / ❓┊help
9mo ago