12 lines
204 B
PHP
12 lines
204 B
PHP
<?php
|
|
|
|
namespace App\Traits\Purchase;
|
|
|
|
trait WithCalculateTotal
|
|
{
|
|
public function getTotal()
|
|
{
|
|
return $this->purchaseItems->sum(fn ($item) => $item->unit_price * $item->quantity);
|
|
}
|
|
}
|