如何在购物车上添加Paypal discount_amount
每一个想法都可以。但我不能在paypal购物车上添加折扣金额。
我的代码
$counter =0;
$items=[];
foreach(Input::all() as $input )
{
if(Input::has('item_name'.$counter))
{
$item=new Item();
$item->setName(Input::get('item_name'.$counter))
->setCurrency('GBP')
->setQuantity(Input::get('item_qty'.$counter))
->setPrice(Input::get('item_price'.$counter));
$items[]=$item;
}
$counter++;
}