If you want to group result by some condition which isn’t a direct column in your database, you can do that by providing a closure function.
$users = User::all()->groupBy(function($item) {
return $item->created_at->format('Y-M-D');
});
If you want to group result by some condition which isn’t a direct column in your database, you can do that by providing a closure function.
$users = User::all()->groupBy(function($item) {
return $item->created_at->format('Y-M-D');
});
For further actions, you may consider blocking this person and/or reporting abuse
Victor Isaac Oshimua -
Lithe -
Megan Lee -
Olushola O. -
Top comments (0)