🔥 Laravel Tip: Relationships filtering
Apr 8, 2022
For people new to eloquent.
When you want to filter a relationship, make sure to call it a method, otherwise, you're loading all the models into memory and then filtering.
Instead, you want to do the filtering in the database layer.
When you want to filter a relationship, make sure to call it a method, otherwise, you're loading all the models into memory and then filtering.
Instead, you want to do the filtering in the database layer.
Other tips:
🔥 Laravel Tip: orderByRaw
Jan 8, 2023
🔥 Laravel Tip: Update or create
May 1, 2022
🔥 Laravel Tip: Factory states
Mar 2, 2022