Skip to main content
๐Ÿ› Bug HuntLV Laravel Hardโšก+35 XP

N+1 in Blade

This loads too many queries in the loop.

๐Ÿ› Find the bug
1$posts = Post::all();
2// Blade: @foreach($posts as $post) {{ $post->author->name }} @endforeach
๐Ÿ› The bug is on line 1

๐Ÿ”ง Select the correct fix: