Prevent multiple calls to the same model
I have the following scenario
Basically, I'm setting a
maxValue
on the quantity
field. I'm also adding a helperText
to give the user a more helpfull message. But I'm calling the same thing twice.
Any recommendations to avoid doing this?Solution:Jump to solution
I guess that's up to you to decide. I just said that because sometimes an extra
find
query is no big deal.
In any case, if you're in laravel 11+, have a look at this too https://flanger.dev/blog/post/avoid-duplicate-queries-in-filament-closures-for-eloquent-records...4 Replies
Not with built-in stuff AFAIK. You can set use a computed property but I'm not sure if it's worth the hassle. Something like
and
Sooomething like that
Why is not worth the hustle? Coming from a point of DRY and optimization, calling the same thing multiple times makes no sense but honestly I might be ignoring something
Solution
I guess that's up to you to decide. I just said that because sometimes an extra
find
query is no big deal.
In any case, if you're in laravel 11+, have a look at this too https://flanger.dev/blog/post/avoid-duplicate-queries-in-filament-closures-for-eloquent-recordsAppreciate you tacking the time to answer. I like to optimice my code and having stuff doing the same thing multiple time didn't make too much sense.