laravel:performance-select-columns
29
总安装量
19
周安装量
#12837
全站排名
安装命令
npx skills add https://github.com/jpcaparas/superpowers-laravel --skill laravel:performance-select-columns
Agent 安装分布
claude-code
16
opencode
10
github-copilot
10
cursor
8
codex
8
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