Placeholder::make('custom_placeholder')
->live()
->content(function (Get $get): string {
$html_code = '<div style="background-color: red;">' . $get('updated_at') . '</div>';
return new HtmlString($html_code);
})
->label(__('My placeholder')),
Placeholder::make('custom_placeholder')
->live()
->content(function (Get $get): string {
$html_code = '<div style="background-color: red;">' . $get('updated_at') . '</div>';
return new HtmlString($html_code);
})
->label(__('My placeholder')),