lolmaheen
lolmaheen
FFilament
Created by lolmaheen on 2/24/2025 in #❓┊help
Get the index of current repeater item
seems to be working fine by adding ->afterStateHydrated(fn (Set $set,$state) => $set('product_id', $state)) ->disabled() ->dehydrated(true) on select column
11 replies
FFilament
Created by lolmaheen on 2/24/2025 in #❓┊help
Get the index of current repeater item
TableRepeater::make('products') >label('Products') ->headers([ Header::make('Product'), Header::make('Quantity'), Header::make('Total Price'), ]) ->schema( function (){ return [ Select::make('product_id') ->readOnly() ->searchable() ->required()
tried not working readOnly does not exist on either setting dehydrated after disabled also not working
11 replies
FFilament
Created by lolmaheen on 2/24/2025 in #❓┊help
Get the index of current repeater item
also since my product is auto selected based on platform i want to keep this field disabled but if i do then it does not save and include this in form request because of public function disabled(bool | Closure $condition = true): static { $this->isDisabled = $condition; $this->dehydrated(fn (Component $component): bool => ! $component->evaluate($condition)); return $this; }``
11 replies
FFilament
Created by Remi Hindriks on 7/8/2024 in #❓┊help
ExpandableList isLimited not defined Tables Package
@LeandroFerreira @Remi Hindriks
10 replies
FFilament
Created by Remi Hindriks on 7/8/2024 in #❓┊help
ExpandableList isLimited not defined Tables Package
facing the same issue is there a solution
10 replies
FFilament
Created by zemo on 9/17/2024 in #❓┊help
How to Get $get an input that is in the main form from the ->createOptionForm modal
fn($livewire) =>
16 replies
FFilament
Created by zemo on 9/17/2024 in #❓┊help
How to Get $get an input that is in the main form from the ->createOptionForm modal
would this work on a form page? when the record doesn't exist
16 replies
FFilament
Created by zemo on 9/17/2024 in #❓┊help
How to Get $get an input that is in the main form from the ->createOptionForm modal
I think this is also possible with $livewire->data[]
16 replies
FFilament
Created by lolmaheen on 9/12/2024 in #❓┊help
Helper Text as Action not working
Thankyou this works!
5 replies
FFilament
Created by lolmaheen on 8/28/2024 in #❓┊help
Text Input Column Validation Not Working
Passing the record parameter makes this unexecutable fn ($record, $component) => function ($attributes, $value, $fail) use ($record) if i used it directly:
->rules([ function ($attributes, $value, $fail)
It gets executed but I want to access the $record to compare updated value with the original record value.
4 replies