FFilament•Created by Biostate on 3/11/2023 in #❓┊help Add a default value to an input that doesn't exist in my resource
TextInput::make('result')
->numeric()
->required()
->default(function (\Closure $get) {
return $get('price') * $get('percentage') ;
})
->disabled(true),