2

こんにちは皆さん、私はlaravelでオムニペイを使用しています。ペイパルの領収書にすべてのアイテムの合計とそれらの説明を表示するようにコードを変更する方法を知りたいです

$response=$gateway->purchase(
        array(
            'cancelURL'     =>  $keys->getCancelUrl(),
            'returnURL'     =>  $keys->getReturnUrl(),
            'description'   =>  Cart::content(),
            'amount'        =>  '200.00',
            'currency'      =>  $keys->getCurrency()
            )
    )->send();</i>
4

2 に答える 2

2

ありがとうございます。私は何かを共有するつもりです.paypalには配列を追加する方法があり、それはsetItems($ array)であり、非常にクールです

foreach (Cart::content() as $content)
{
    $items->add(array(
        'name' => $content->name,
        'quantity' => $content->qty,
        'price' => $content->price,
    ));
}

$items->add(array(
    'name' => 'IVA',
    'quantity' => '1',
    'price' => $iva,
));

$response = $gateway->purchase(
    array(
        'cancelURL' => $keys->getCancelUrl(),
        'returnURL' => $keys->getReturnUrl(),
        'description' => 'Venta',
        'amount' => $total,
        'currency' => $keys->getCurrency()
    )
)->setItems($items)->send();

見つけられないのは税金を追加する方法だけだったので、アイテムのように追加しました

于 2014-08-01T17:01:51.190 に答える