skills/noartem/laravel-vue-skills/laravel-performance-select-columns

laravel-performance-select-columns

SKILL.md

Select Only Needed Columns

Reduce payloads by selecting exact fields:

User::select(['id', 'name'])->paginate();

Post::with(['author:id,name'])->select(['id','author_id','title'])->get();
  • Avoid *; keep DTOs/resources aligned with selected fields
  • Combine with eager loading to avoid N+1
Weekly Installs
14
GitHub Stars
5
First Seen
Jan 25, 2026
Installed on
codex14
gemini-cli12
opencode12
amp11
github-copilot11
cursor11