Input Wrapper Blade
I have this code
<x-filament::input.wrapper>
<x-slot name="prefix">
<x-filament::input
type="text"
wire:model="text1"
/>
</x-slot>
<x-filament::input
type="text"
wire:model="text2"
/>
<x-slot name="suffix">
Text1/Text2
</x-slot>
</x-filament::input.wrapper>
How could I transform this to move the Text1/Text2 in between inputs? Or any other alternative solution? Thanks1 Reply
I would just use custom html for something like this
And just style it to look “filamenty”
Or I guess you could instead of using suffix or prefix just put 2 inputs inside the wrapper with a supposed “infix” (like the text in the middle). ChatGPT gave me this. You can do with it as you please.