count how many item on repeater

How to count how many item that already create to user in laravel filament?
Please help me! Thank you very much!
Solution
Placeholder::make('repeater_count')
    ->content(fn (Get $get): string => count($get('repeater'))),
Repeater::make('repeater')
    ->schema([
        TextInput::make('field')
    ])

?
Was this page helpful?
count how many item on repeater - Filament