shabxs
shabxs
FFilament
Created by shabxs on 3/21/2025 in #❓┊help
Filament\Forms\Components\Select::isOptionDisabled(): Argument #2 ($label) must be of type string,
as of now a custom query is working fine... SelectFilter::make('product_type') ->options(ProductType::class) ->query(function (Builder $query, array $data) { if (empty($data['value'])) { return $query; } return $query->whereHas('product', function (Builder $query) use ($data) { $query->where('product_type', $data['value']); }); })
17 replies
FFilament
Created by shabxs on 3/21/2025 in #❓┊help
Filament\Forms\Components\Select::isOptionDisabled(): Argument #2 ($label) must be of type string,
There is no issue in getting the options ......but filtering based on the option is causing error. When I remove the column casting as Enum.. the filtering works perfect protected function casts(): array { return [ // 'product_type' => ProductType::class,
]; } may be isOptionDisabled function require an enum cast check....
17 replies
FFilament
Created by shabxs on 3/21/2025 in #❓┊help
Filament\Forms\Components\Select::isOptionDisabled(): Argument #2 ($label) must be of type string,
Yup... and that is not working 🙂
17 replies
FFilament
Created by shabxs on 3/21/2025 in #❓┊help
Filament\Forms\Components\Select::isOptionDisabled(): Argument #2 ($label) must be of type string,
Its relationship filter.....
17 replies
FFilament
Created by shabxs on 3/21/2025 in #❓┊help
Filament\Forms\Components\Select::isOptionDisabled(): Argument #2 ($label) must be of type string,
No description
17 replies
FFilament
Created by shabxs on 3/21/2025 in #❓┊help
Filament\Forms\Components\Select::isOptionDisabled(): Argument #2 ($label) must be of type string,
Yes.. it implements HasLabel
17 replies
FFilament
Created by shabxs on 3/11/2025 in #❓┊help
custom input live debounce
Thanks.. So I have to customize livewire wire:model
12 replies
FFilament
Created by shabxs on 3/11/2025 in #❓┊help
custom input live debounce
onBlur also same. Below is the custom component, Basically a range slider along with the input field which can be edited and displayed formatted. <x-dynamic-component :component="$getFieldWrapperView()" :field="$field"> <div x-data="{ value: $wire.{{ $applyStateBindingModifiers("$entangle('{$getStatePath()}')") }}, get formattedValue() { return new Intl.NumberFormat('en-US', { style: 'currency', currency: 'USD', minimumFractionDigits: 0, maximumFractionDigits: 0 }).format(this.value); }, updateValue(event) { let rawValue = event.target.value.replace(/[^0-9]/g, ''); this.value = rawValue ? parseInt(rawValue) : 0; $refs.inputField.value = this.formattedValue; } }" x-init="$watch('value', val => $refs.inputField.value = new Intl.NumberFormat('en-US', { style: 'currency', currency: 'USD', minimumFractionDigits: 0, maximumFractionDigits: 0 }).format(val))"> <x-filament::input.wrapper> <x-filament::input type="text" x-ref="inputField" @input.debounce.500ms="updateValue($event)" x-bind:value="formattedValue" /> </x-filament::input.wrapper> <div class="slider-container relative -mt-2"> <input type="range" :min="{{ $getMinValue() }}" :max="{{ $getMaxValue() }}" :step="{{ $getStep() }}" x-model="value" class="slider w-full"> </div> </div> </x-dynamic-component>
12 replies
FFilament
Created by shabxs on 3/11/2025 in #❓┊help
custom input live debounce
Yes used.. then only the live part is working.. but not debounce
12 replies
FFilament
Created by shabxs on 3/11/2025 in #❓┊help
custom input live debounce
live() is working.. which sends too many requests... debounce is not in action.. If it should work, Let me try again.. anything wrong on my side
12 replies
FFilament
Created by Aethyrion on 1/16/2025 in #❓┊help
Testing modal form in resource relation
As above.. appropriate Relationmanager is upon which all the tests are implemented
28 replies
FFilament
Created by shabxs on 1/12/2025 in #❓┊help
Hide Group Header
Thank you.. for response..
5 replies
FFilament
Created by shabxs on 12/10/2024 in #❓┊help
Communicate between form and table
thanks for the direction... let me check on it...
5 replies
FFilament
Created by shabxs on 10/23/2024 in #❓┊help
Call Model on afterValidate
will try .. Thanks for the quick support
9 replies
FFilament
Created by shabxs on 10/23/2024 in #❓┊help
Call Model on afterValidate
2fa is a little too much for my application... Here I would like to just verify the user is registering with a valid and active phone number..
9 replies
FFilament
Created by shabxs on 10/23/2024 in #❓┊help
Call Model on afterValidate
Thanks @toeknee I could dispatch the modal. But it just pops up and continue with the rest of the process How do I stop it there and only proceed after action on the modal. Perhaps its a basic php question ... 🙂
9 replies
FFilament
Created by shabxs on 8/19/2024 in #❓┊help
Missing required parameter for multitenancy
If you are asking about CreateMaterial.php file inside pages.. No, havent touched it...
also thing is .. when i refresh the page which shows error... the resource gets saved successfully....
5 replies
FFilament
Created by shabxs on 7/2/2024 in #❓┊help
Searchable Table in a Livewire Component
Thanks verymuch @toeknee @Dennis Koch for the guidance...... Got things done......
7 replies
FFilament
Created by shabxs on 7/2/2024 in #❓┊help
Searchable Table in a Livewire Component
True, js not loading :-)..... but livewire scripts loading...not of filaments.. additional settings or should load it manually... ?
7 replies
FFilament
Created by shabxs on 6/22/2024 in #❓┊help
Livewire pest plugin code replication
Right... Thanks...
5 replies