public static function getBlockSchema(): Block
{
return Block::make('exit_popup')
->label('Exit Popup')
->when('resource', 'ComponentResource')
->schema([
TextInput::make('title')
->label('Title')
->required(),
TextArea::make('intro')
->label('Intro')
->required(),
TextInput::make('submission_message')
->label('Submission Message')
->required(),
TextInput::make('button_label')
->label('Button Label')
->required(),
]);
}
public static function getBlockSchema(): Block
{
return Block::make('exit_popup')
->label('Exit Popup')
->when('resource', 'ComponentResource')
->schema([
TextInput::make('title')
->label('Title')
->required(),
TextArea::make('intro')
->label('Intro')
->required(),
TextInput::make('submission_message')
->label('Submission Message')
->required(),
TextInput::make('button_label')
->label('Button Label')
->required(),
]);
}