laravel:performance-select-columns

安装量: 41
排名: #17508

安装

npx skills add https://github.com/jpcaparas/superpowers-laravel --skill laravel:performance-select-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

返回排行榜