Performance: Resource collections
MEDIUM IMPACT
This affects the server response time and the size of data sent to the client, impacting page load speed and perceived responsiveness.
return UserResource::collection(User::paginate(15));
return User::all();| Pattern | DOM Operations | Reflows | Paint Cost | Verdict |
|---|---|---|---|---|
| Returning raw large dataset | N/A (server-side) | N/A | High due to large JSON parsing | [X] Bad |
| Using paginated resource collection | N/A (server-side) | N/A | Low due to smaller JSON | [OK] Good |