© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
FilamentF
Filament•2y ago•
15 replies
TheNastyPasty

Only show label in a infolist

I want to show only a label in a repeatableentry without a value in a infolist. Is this somehow possible?
Everything I tried didn't work. I need to align the labels with the values in the other repeatableentries.

 Section::make()
  ->visible(true)
  ->schema([
  
  RepeatableEntry::make('')
      ->label('Income')
      ->schema([
          //Labels here
      ])
      ->contained(false)
      ->columnSpan(1),
  
  RepeatableEntry::make('calculationProjectionsFirstYear')
      ->label('Year 1')
      ->schema([
  
          TextEntry::make('gross_rent')
              ->hiddenLabel(true)
              ->money('AED', 100),
  
          TextEntry::make('vacancy')
              ->hiddenLabel(true)
              ->money('AED', 100),
  
          TextEntry::make('operating_income_total')
              ->hiddenLabel(true)
              ->money('AED', 100),
      ])
      ->contained(false)
      ->columnSpan(1),
 Section::make()
  ->visible(true)
  ->schema([
  
  RepeatableEntry::make('')
      ->label('Income')
      ->schema([
          //Labels here
      ])
      ->contained(false)
      ->columnSpan(1),
  
  RepeatableEntry::make('calculationProjectionsFirstYear')
      ->label('Year 1')
      ->schema([
  
          TextEntry::make('gross_rent')
              ->hiddenLabel(true)
              ->money('AED', 100),
  
          TextEntry::make('vacancy')
              ->hiddenLabel(true)
              ->money('AED', 100),
  
          TextEntry::make('operating_income_total')
              ->hiddenLabel(true)
              ->money('AED', 100),
      ])
      ->contained(false)
      ->columnSpan(1),
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

infolist label position
FilamentFFilament / ❓┊help
2y ago
Infolist TextEntry label
FilamentFFilament / ❓┊help
3y ago
Show Image in InfoList
FilamentFFilament / ❓┊help
3y ago
Show file uploaded in Infolist
FilamentFFilament / ❓┊help
2y ago