Skip to main content

Black Friday 2025! Only until December 1st: coupon FRIDAY25 for 40% off Yearly/Lifetime membership!

Read more here

"Unplanned" Bug; Fixing Limitation Query

Premium
7 min read

This will be kind of an "offtopic" lesson: I realized I introduced a bug quite a long time ago, and decided to dedicate a full separate lesson about not only how to fix it, but how to properly write tests.

Remember in the property search lesson I realized that we need to return one apartment per property? I fixed it like this, by using take(1). Well, "fixed", I will show you why this approach is incorrect...

The Full Lesson is Only for Premium Members

Want to access all of our courses? (29 h 14 min)

You also get:

54 courses
Premium tutorials
Access to repositories
Private Discord
Get Premium for $129/year or $29/month

Already a member? Login here

Comments & Discussion

AA
Ali Al Qahtani ✓ Link copied!

In PropertySearchTest I note repeating codes

create second property "$propert2" with 3 apartments

PK
Povilas Korop ✓ Link copied!

Well spotted! Fixed that, thanks.

DS
Dmytro Sakharuk ✓ Link copied!

It is very good that this problem has been fixed in laravel 11, and we can do eager limit without a third-party package.