Laravel devs, Laravel 13.26 makes custom pivot scopes much nicer. 👀

wherePivot() now accepts a closure, so you can reuse scopes from your custom pivot model instead of repeating pivot conditions in every relationship query.

Less duplication, cleaner relationships.
image

Laravel devs, Collection::groupBy() can do more than group by a column. 👀

Pass it a closure and calculate the group dynamically.

Day, week, month, quarter, or any grouping rule your application needs.

Perfect for turning collections into report-ready data.
image