Hide repeater when edit mode
Is there possible to hide the repeater when in edit mode or view mode. only table of the relation will appear.
4 Replies
You can use the ->hidden function and check which page your on
Sorry, I'm newbie in filament. can you elaborate more regarding in ->hidden ?
Repeater::make()->hiddenOn(‘create’)
Or Repeater::make()->hidden(fn($context) => $context === ‘create’)
Thank you 🙂 I will try on this