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.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community