Action::make('create')
->modalHeading('Create New')
->form([
\Filament\Forms\Components\Placeholder::make('qr-code')
->label(false)
->content(function (Get $get): ?HtmlString {
return is_null($get('original_url')) ?
null :
\SimpleSoftwareIO\QrCode\Facades\QrCode::format('svg')
->style('square')
->size(250)
->generate($get('original_url'));
}),
...
Action::make('create')
->modalHeading('Create New')
->form([
\Filament\Forms\Components\Placeholder::make('qr-code')
->label(false)
->content(function (Get $get): ?HtmlString {
return is_null($get('original_url')) ?
null :
\SimpleSoftwareIO\QrCode\Facades\QrCode::format('svg')
->style('square')
->size(250)
->generate($get('original_url'));
}),
...