Laravel Eloquent Tip 💡
Did you know there are 5 ways to remove relations from an Eloquent model?
Some mutate the model.
Some return a clone.
Laravel 12.54 just added a cleaner option: withoutRelation() ✨
Back