आप groupBy()
. का इस्तेमाल कर सकते हैं बंद करने की विधि:
$months = NewsItem::groupBy(function($d) {
return Carbon::parse($d->created_at)->format('m');
})->get();
या पहले डेटा प्राप्त करें और फिर groupBy()
use का उपयोग करें वाक्पटु संग्रह पर:
$months = NewsItem::get()->groupBy(function($d) {
return Carbon::parse($d->created_at)->format('m');
});