Advertisement
aivavic

Untitled

May 10th, 2017
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.51 KB | None | 0 0
  1. $liqpay = new \common\components\liqpay\Liqpay();
  2.  
  3.             echo $liqpay->cnb_form(array(
  4.                 'action'         => 'p2pcredit',
  5.                 'version'        => '3',
  6.                 'public_key'    => env('LIQPAY_PUBLIC_KEY'),
  7.                 'sandbox' => 1,
  8.                 'amount'         => $model->in_safe,
  9.                 'currency'       => 'UAH',
  10.                 'description'    => 'description text',
  11.                 'order_id'       => $model->id . "-" . time(),
  12.  
  13.             ));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement