Arjan
Arjan
FFilament
Created by Arjan on 10/31/2024 in #❓┊help
Custom Notification for ExportAction
Anyone?
3 replies
FFilament
Created by Arjan on 10/29/2024 in #❓┊help
Follow/Unfollow record is not working
Thank you Leandro. I indeed start using the Toggle column:
ToggleColumn::make('users.id')
->label('Volgen')
->onIcon('gmdi-star')
->offIcon('gmdi-star-border')
->onColor('success')
->beforeStateUpdated(function ($record, $state, SeriesService $service) {
$state == true ? $service->follow($record) : $service->unfollow($record);
})
->afterStateUpdated(function ($record, $state) {
// Runs after the state is saved to the database.
}),
ToggleColumn::make('users.id')
->label('Volgen')
->onIcon('gmdi-star')
->offIcon('gmdi-star-border')
->onColor('success')
->beforeStateUpdated(function ($record, $state, SeriesService $service) {
$state == true ? $service->follow($record) : $service->unfollow($record);
})
->afterStateUpdated(function ($record, $state) {
// Runs after the state is saved to the database.
}),
6 replies
FFilament
Created by Arjan on 10/29/2024 in #❓┊help
Follow/Unfollow record is not working
Nobody?
6 replies
FFilament
Created by Arjan on 10/24/2024 in #❓┊help
Searchable MorphTo
Thanks nanopanda! Your code has solved this issue.
5 replies
FFilament
Created by Arjan on 10/19/2024 in #❓┊help
successNotificationTitle for table action is not showing
Thanks Lara! This is the solution.
5 replies
FFilament
Created by ROOT-LEE on 8/26/2023 in #❓┊help
[afterStateUpdated with Form Wizard]Change a dependent field value that is present in another step
Is there any solution for this?
2 replies
FFilament
Created by Arjan on 4/28/2024 in #❓┊help
Current model in RepeatableEntry
Thanks for your message. But I want to access to model/row that is used in the RepeatableEntry. And not the 'parent' model/record.
5 replies
FFilament
Created by Arjan on 4/14/2024 in #❓┊help
QueryBuilder -> NumberConstraint for Money
Thanks, but I am using the QueryBuilder and want to make a Contraint. How do I do this?
6 replies
FFilament
Created by Arjan on 4/1/2024 in #❓┊help
QueryBuilder is not filtering Numbers correctly
ok thanks, I will do that and try to see if there is something wrong.
11 replies
FFilament
Created by Arjan on 4/1/2024 in #❓┊help
QueryBuilder is not filtering Numbers correctly
Anyone?
11 replies
FFilament
Created by Arjan on 4/1/2024 in #❓┊help
QueryBuilder is not filtering Numbers correctly
Ok, hopefully, there is someone else who knows what is causing the issue??
11 replies
FFilament
Created by Arjan on 4/1/2024 in #❓┊help
QueryBuilder is not filtering Numbers correctly
We are doing that, storing the value as an int and cast it as an integer. We are using postgres, can this be causing the issue?
11 replies
FFilament
Created by Arjan on 4/1/2024 in #❓┊help
QueryBuilder is not filtering Numbers correctly
Hi Dennis, What do you mean by 'NumberContraint is a custom filter'? I am creating the constraint as described here: https://filamentphp.com/docs/3.x/tables/filters/query-builder
11 replies
FFilament
Created by Arjan on 3/31/2024 in #❓┊help
QueryBuilder with an relationship->counts()
By the way this is happening with all my NumberContraint filters. So it seems to be a different issue. I will create a new topic, and mark your solution as correct.
5 replies
FFilament
Created by Arjan on 3/31/2024 in #❓┊help
QueryBuilder with an relationship->counts()
No description
5 replies