Ties Pol
Ties Pol
FFilament
Created by Dkil on 12/7/2023 in #❓┊help
How can I move breadcrumbs from the bottom to the top?
Thanks will look into it
19 replies
FFilament
Created by Dkil on 12/7/2023 in #❓┊help
How can I move breadcrumbs from the bottom to the top?
There has to be a way right? Maybe it is possible to do the other way around, like putting the topbar inside the page @Lara Zeus ?
19 replies
FFilament
Created by Dkil on 12/7/2023 in #❓┊help
How can I move breadcrumbs from the bottom to the top?
Did anyone find a solution for this?
19 replies
FFilament
Created by Ties Pol on 7/31/2023 in #❓┊help
Textinput masking with alpine not working
Thank you!
8 replies
FFilament
Created by Ties Pol on 7/31/2023 in #❓┊help
Textinput masking with alpine not working
I've found my answer. The problem was a semicolon in the end of the JS.
TextInput::make('cost_price')
->prefix('€')
->mask(RawJs::make(<<<'JS'
$money($input, ',', '.', 4)
JS
)),
TextInput::make('cost_price')
->prefix('€')
->mask(RawJs::make(<<<'JS'
$money($input, ',', '.', 4)
JS
)),
8 replies
FFilament
Created by Ties Pol on 7/31/2023 in #❓┊help
Textinput masking with alpine not working
Thanks for you reaction! I'm actually trying to get a money mask. Do you know how to get the money() method from alpine ? Or is there any custom money mask for filament?
8 replies
FFilament
Created by Ties Pol on 7/31/2023 in #❓┊help
Textinput masking with alpine not working
When doing it like this it works, however i want to use the money() function from alpine.
TextInput::make('sales_price')
->placeholder('€')
->mask(RawJs::make(<<<JS
function x(input) {
return input.startsWith('34') || input.startsWith('37')
? '9999 999999 99999'
: '9999 9999 9999 9999'
}
JS
)),
TextInput::make('sales_price')
->placeholder('€')
->mask(RawJs::make(<<<JS
function x(input) {
return input.startsWith('34') || input.startsWith('37')
? '9999 999999 99999'
: '9999 9999 9999 9999'
}
JS
)),
8 replies