Infolists\Components\RepeatableEntry::make('custom_links')
->label('Links')
->getStateUsing(fn() => [
['label' => 'Google', 'url' => 'https://google.com'],
['label' => 'GitHub', 'url' => 'https://github.com'],
])
->schema([
Infolists\Components\TextEntry::make('label')->label('Title'),
Infolists\Components\TextEntry::make('url')->label('Link'),
]),
Infolists\Components\RepeatableEntry::make('custom_links')
->label('Links')
->getStateUsing(fn() => [
['label' => 'Google', 'url' => 'https://google.com'],
['label' => 'GitHub', 'url' => 'https://github.com'],
])
->schema([
Infolists\Components\TextEntry::make('label')->label('Title'),
Infolists\Components\TextEntry::make('url')->label('Link'),
]),