manstfu
Explore posts from serversTCTwill CMS
•Created by manstfu on 3/4/2024 in #👊support
How to use Conditional Fields in Controller
I want to add a Author select fields when shared_by === user
$form->add(
Radios::make()
->name('shared_by')
->label('Author')
->border()
->options(
Options::make([
Option::make('anonymous', 'Anonymous'),
Option::make('bot', 'Bot'),
Option::make('user', 'User'),
])
)
);
6 replies