selectRaw関数を使って行う。
例)誕生月ごとのメンバーの人数を集計する場合のコード
$members = Member::from('members')
->selectRaw('date_format(birthday, "%m") mm')
->selectRaw('count(1) total')
->groupBy('mm')
->orderBy('mm', 'ASC')
->get();
半分の力で頑張ります
selectRaw関数を使って行う。
例)誕生月ごとのメンバーの人数を集計する場合のコード
$members = Member::from('members')
->selectRaw('date_format(birthday, "%m") mm')
->selectRaw('count(1) total')
->groupBy('mm')
->orderBy('mm', 'ASC')
->get();