Somebody
Somebody
FFilament
Created by Somebody on 9/21/2023 in #❓┊help
how to change input text value before unique validation?
before do unique validation i want to standardise the text input value like lowercase it.etc. How do i do so before apply unique validation? in a filament text input? Something like this if it is a normal form request
function prepareForValidation(

$this->mobile_phone = (new PhoneNumber($this->mobile_phone, 'US')->formatE164();

}
function prepareForValidation(

$this->mobile_phone = (new PhoneNumber($this->mobile_phone, 'US')->formatE164();

}
Then apply unique validation later
11 replies
FFilament
Created by Somebody on 9/12/2023 in #❓┊help
Is it possible to send db notifications only to selected panels?
title is my question
5 replies
FFilament
Created by Somebody on 8/30/2023 in #❓┊help
is it possible to use a info list component inside a form component and vice versa?
see title
4 replies
FFilament
Created by Somebody on 8/5/2023 in #❓┊help
Can we still use callable $get & callable $set?
In v2 I always prefer to do function (callable $get) because it saves me from having to do a Closure import or having that ugly \Closure but in v3 I read from the upgrade guide that there is now Get & Set classes, so can I still use callable $get & callable $set? https://filamentphp.com/docs/3.x/panels/upgrade-guide#get-and-set-closure-parameters
3 replies