-
-
Notifications
You must be signed in to change notification settings - Fork 3.7k
Open
Labels
Milestone
Description
Package
filament/filament
Package Version
v3.3.34
Laravel Version
v12.2.0
Livewire Version
v3.6.4
PHP Version
PHP 8.4
Problem description

Expected behavior
Present the raw string.
Steps to reproduce
public function form(Form $form): Form
{
return $form
->schema([
Forms\Components\TextInput::make('array')
->columnSpanFull()
->hint('TextInput')
->placeholder('Data in Array format: ["key" => "value", "foo" => "bar"]'),
Forms\Components\Textarea::make('Json')
->columnSpanFull()
->hint('Textarea')
->helperText('No escaped double quotes but single quotes are fine.')
->placeholder('Meta data in JSON format: {\'key\': \'value\', \"foo\": \"bar\"}'),
Forms\Components\RichEditor::make('description')
->columnSpanFull()
->hint('RichEditor')
->helperText('Double quotes are fine.')
->placeholder('Meta data in JSON format: {"key": "value", "foo": \"bar\"}'),
]);
}
Reproduction repository (issue will be closed if this is not valid)
https://github.com/bakuon/filament-app
Relevant log output
Metadata
Metadata
Assignees
Labels
Type
Projects
Status
Todo