laravel5.7 模型关联 (select 指定查询字段、where关联条件、sum 关联求和)
//指定查询字段->with(['certifications'=>function($a){//certifications是关联的模型名$a->where('status',1)->select('user_id','status');//user_id是两个表的关联键,即使不查询user_id也要把user_id查询出来}])//where关联条件->when($by_income,func