laravel-performance-select-columns

📁 noartem/laravel-vue-skills 📅 Jan 25, 2026
10
总安装量
4
周安装量
#30465
全站排名
安装命令
npx skills add https://github.com/noartem/laravel-vue-skills --skill laravel-performance-select-columns

Agent 安装分布

codex 4
opencode 3
gemini-cli 3
antigravity 2
amp 2

Skill 文档

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