© 2026 Hedgehog Software, LLC
public function customerInfolist(Infolist $infolist): Infolist { return $infolist ->state([ 2 => [ 'expected' => 12457, 'booked' => 12457, ], 4 => [ 'expected' => 12457, 'booked' => 12457, ], ]) ->schema([ RepeatableEntry::make('customers') ->schema([ TextEntry::make('expected') ->label('Expected'), TextEntry::make('booked') ->label('Booked'), ]), ] ); }