无法在laravel中使用darryldecode申请优惠券

问题描述 投票:0回答:1

我正在尝试使用 darryldecode 库申请优惠券

public function applyDiscount(Request $request)
{

    $condition = new \Darryldecode\Cart\CartCondition(array(
        'name' => 'voucher',
        'type' => 'discount',
        'target' => 'subtotal', 
        'value' => '12.5%',
    ));
    \Cart::condition($condition);
}

但总金额仍然相同。

参考:

https://packagist.org/packages/darryldecode/cart

https://github.com/darryldecode/laravelshoppingcart/blob/master/tests/CartConditionsTest.php

任何解决方案谢谢

laravel
1个回答
0
投票

这个包在 laravel 8 中不起作用。请检查 git 的 title 中的文档

© www.soinside.com 2019 - 2024. All rights reserved.