Skip to content
Advertisement

Laravel Eloquent, group by week and display start and end of week

I have the following code, which return a collection of Orders grouped by week.

The result is the following, with, Obviously “05” being the week number.

But to the proyect i’m currently working this is not the way I want to show it. Is there any way to display or return the week start and week end and not the week number? Like this

Advertisement

Answer

Yes, with Carbon it is easy to find the start and end of week.

Advertisement