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),
Was this page helpful?