Support the ongoing development of Laravel.io →
posted 10 years ago
Eloquent

I have a model with a belongsToMany relationship with an additional pivot column.

    public function resources() {
        return $this->belongsToMany('Models\Resource')->withPivot('hours');
    }

How would I go about summing together the 'hours' data in the collection?

I've tried using the sum() method like so:

    $collection->resources->pivot->sum('hours')

I just get an undefined property error. I'm guessing none of the aggregate methods work pivot data at all.

Last updated 2 years ago.
0

Sign in to participate in this thread!

Eventy

Your banner here too?

Knappster knappster Joined 20 Feb 2015

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2025 Laravel.io - All rights reserved.