41 lines
1011 B
PHP
41 lines
1011 B
PHP
<?php
|
|
|
|
/**
|
|
* SubtotalService.php
|
|
*
|
|
* @copyright 2022 beikeshop.com - All Rights Reserved
|
|
* @link https://beikeshop.com
|
|
* @author Edward Yang <yangjin@guangda.work>
|
|
* @created 2022-07-22 17:58:25
|
|
* @modified 2022-07-22 17:58:25
|
|
*/
|
|
|
|
namespace Beike\Shop\Services\TotalServices;
|
|
|
|
use Beike\Shop\Services\TotalService;
|
|
|
|
class SubtotalService
|
|
{
|
|
public static function getTotal(TotalService $totalService)
|
|
{
|
|
$amount = self::getAmount($totalService);
|
|
$totalData = [
|
|
'code' => 'sub_total',
|
|
'title' => trans('shop/carts.product_total'),
|
|
'amount' => $amount,
|
|
'amount_format' => currency_format($amount)
|
|
];
|
|
|
|
$totalService->amount += $totalData['amount'];
|
|
$totalService->totals[] = $totalData;
|
|
|
|
return $totalData;
|
|
}
|
|
|
|
public static function getAmount(TotalService $totalService)
|
|
{
|
|
$carts = $totalService->cartProducts;
|
|
return collect($carts)->sum('subtotal');
|
|
}
|
|
}
|