RepeatableEntry does not show any data inside the array
form
Repeater::make('inlogGegevens')
->collapsible()
->schema([
TextInput::make("inlogGegevens.*.InlogNaam")
->label('Inlog Naam')
,
TextInput::make("inlogGegevens.*.UserName")
->label('User Name')
,
TextInput::make("inlogGegevens.*.Password")
->label('Password')
])
->columns(1),Repeater::make('inlogGegevens')
->collapsible()
->schema([
TextInput::make("inlogGegevens.*.InlogNaam")
->label('Inlog Naam')
,
TextInput::make("inlogGegevens.*.UserName")
->label('User Name')
,
TextInput::make("inlogGegevens.*.Password")
->label('Password')
])
->columns(1),