© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•2y ago•
8 replies
Shaung Bhone

Placeholder component with relationship

I'm trying to show all the value when user creating invoice in the wizard. user name is not showing. How can I show invoice belong to user?
Forms\Components\Wizard\Step::make('Reviews')
  ->schema([
    Forms\Components\Placeholder::make('number')
      ->content(fn($get) => $get('number')),
          Forms\Components\Placeholder::make('user') <-- not working give me null
            ->content(fn($get) => $get('name')),
               Forms\Components\Placeholder::make('note')
                    ->content(
                       fn($get)
                        => new HtmlString($get('note'))
                   ),
]),
Forms\Components\Wizard\Step::make('Reviews')
  ->schema([
    Forms\Components\Placeholder::make('number')
      ->content(fn($get) => $get('number')),
          Forms\Components\Placeholder::make('user') <-- not working give me null
            ->content(fn($get) => $get('name')),
               Forms\Components\Placeholder::make('note')
                    ->content(
                       fn($get)
                        => new HtmlString($get('note'))
                   ),
]),
Filament banner
FilamentJoin
A powerful open source UI framework for Laravel • Build and ship admin panels & apps fast with Livewire
20,307Members
Resources

Similar Threads

Was this page helpful?
Recent Announcements

Similar Threads

Form Component Placeholder
FilamentFFilament / ❓┊help
2y ago
Placeholder Component Testing
FilamentFFilament / ❓┊help
3y ago
Placeholder for empty Select relationship
FilamentFFilament / ❓┊help
3y ago
multiple relationships with ->relationship()
FilamentFFilament / ❓┊help
3y ago