Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
175 views
in Technique[技术] by (71.8m points)

Laravel Eloquent Array foreach

Hey guys Im new to laravel. I have this table

enter image description here

How will i able to fetch count of 'is_correct' column for each subject?

Thanks guys!

question from:https://stackoverflow.com/questions/65845647/laravel-eloquent-array-foreach

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Try this, replace the Model with your eloquent model name

Model::select(
'subject_id',
 IlluminateSupportFacadesDB::raw("COUNT(is_correct) as count")
)
->groupBy('subject_id')
->get();

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...