mirror of
				https://github.com/v2board/v2board.git
				synced 2025-10-30 17:02:04 +08:00 
			
		
		
		
	Stripe invoice description
This commit is contained in:
		| @@ -416,6 +416,12 @@ class OrderController extends Controller | ||||
|             'amount' => floor($order->total_amount * $exchange), | ||||
|             'currency' => $currency, | ||||
|             'type' => 'alipay', | ||||
|             'statement_descriptor' => $order->trade_no, | ||||
|             'metadata' => [ | ||||
|                 'user_id' => $order->user_id, | ||||
|                 'invoice_id' => $order->trade_no, | ||||
|                 'identifier' => '' | ||||
|             ], | ||||
|             'redirect' => [ | ||||
|                 'return_url' => config('v2board.app_url', env('APP_URL')) . '/#/order' | ||||
|             ] | ||||
| @@ -442,6 +448,11 @@ class OrderController extends Controller | ||||
|             'amount' => floor($order->total_amount * $exchange), | ||||
|             'currency' => $currency, | ||||
|             'type' => 'wechat', | ||||
|             'metadata' => [ | ||||
|                 'user_id' => $order->user_id, | ||||
|                 'invoice_id' => $order->trade_no, | ||||
|                 'identifier' => '' | ||||
|             ],             | ||||
|             'redirect' => [ | ||||
|                 'return_url' => config('v2board.app_url', env('APP_URL')) . '/#/order' | ||||
|             ] | ||||
|   | ||||
		Reference in New Issue
	
	Block a user