Guest User

Untitled

a guest
Jul 19th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. public function getTotalPriceAttribute()
  2. {
  3. $total = 0;
  4. foreach ($this->products as $product) {
  5. $total += $product->pivot->amount;
  6. }
  7. return $total;
  8. }
Add Comment
Please, Sign In to add comment