lolmaheen
lolmaheen
FFilament
Created by lolmaheen on 4/29/2025 in #❓┊help
call to a member function relation() on null
thankyou resolved the issue the relatiosnhip was conflicting with another relation
8 replies
FFilament
Created by lolmaheen on 4/29/2025 in #❓┊help
call to a member function relation() on null
i have resolved this error by defining the model but when i click on add offer no fields show up ->model(Model::class)
8 replies
FFilament
Created by lolmaheen on 4/29/2025 in #❓┊help
call to a member function relation() on null
i am using this on custom component and relation manager form
8 replies
FFilament
Created by lolmaheen on 4/27/2025 in #❓┊help
Tab closes as soon as the Modal Opens!
instead added nested collapsible repeaters and didnt need to do the above
3 replies
FFilament
Created by monzer on 1/22/2025 in #❓┊help
TextInputColumn custom validation error
thankyou figured this out!
16 replies
FFilament
Created by monzer on 1/22/2025 in #❓┊help
TextInputColumn custom validation error
how can i pass $record in the custom rules
16 replies
FFilament
Created by monzer on 1/22/2025 in #❓┊help
TextInputColumn custom validation error
is there a solution for this
16 replies
FFilament
Created by lolmaheen on 4/24/2025 in #❓┊help
i want to add a button action in a form tab
this worked thankyou!
5 replies
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