// PageResource.php
->schema([
Forms\Components\TextInput::make('name'),
Forms\Components\TextInput::make('slug'),
// Translated correctly
Forms\Components\Builder::make('content')
->blocks(static::getFlexibleContentBlocks()),
// Translated incorrectly on save - data is not wrapped inside the locales and are not loaded
Forms\Components\Repeater::make('sections')
->schema([
Forms\Components\Builder::make('content')
->blocks(static::getFlexibleContentBlocks())
])
->relationship('sections')
->columnSpanFull(),
]);
// PageResource.php
->schema([
Forms\Components\TextInput::make('name'),
Forms\Components\TextInput::make('slug'),
// Translated correctly
Forms\Components\Builder::make('content')
->blocks(static::getFlexibleContentBlocks()),
// Translated incorrectly on save - data is not wrapped inside the locales and are not loaded
Forms\Components\Repeater::make('sections')
->schema([
Forms\Components\Builder::make('content')
->blocks(static::getFlexibleContentBlocks())
])
->relationship('sections')
->columnSpanFull(),
]);