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
Jenny C -
Techcreator USA -
ScottPony -
Rails Designer -
Top comments (0)