Β© 2026 Hedgehog Software, LLC
$link = [ 'url' => 'https....', 'options' => [ 'color'=>'red', 'target'=>'_blank', //.... ], ];
TextInput::make('link.url') ->live() ->default('https://111') ->hintAction( Action::make('qr-code-design') ->fillForm(function (Get $get) { return [ 'options' => $get('link.options'), 'url' => $get('link.url'), ]; }) ->form([ Grid::make() ->schema([ TextInput::make('url')->default('https://222'), TextInput::make('options.color')->default('#ccdd33'), ]) ]) ->action(function (Set $set, $data) { $set('link', $data); }) ->color('gray') ->icon('heroicon-o-qr-code') ->tooltip('customize the QR code design') ->iconButton()),
{"url":"https:\/\/11111"}