Mejoras en los formularios
Horacio Degiorgi
Posted on March 25, 2023
Probador de enlaces para cambios URL
Filamentphp permite agregar contenido delante o detrás de los inputs en forma sencilla
use Filament\Forms\Components\Actions\Action as ActionComp;
...
Forms\Components\TextInput::make('url')
->required()
->suffixAction(fn (?string $state): ActionComp =>
ActionComp::make('visitar')
->icon('heroicon-s-external-link')
->url(
filled($state) ? "$state" : null,
shouldOpenInNewTab: true,
),
Lo único importante es declarar al inicio del script el uso de ActionComp
💖 💪 🙅 🚩
Horacio Degiorgi
Posted on March 25, 2023
Join Our Newsletter. No Spam, Only the good stuff.
Sign up to receive the latest update from our blog.