芝麻web文件管理V1.00
编辑当前文件:/home/qrafawbu/store.kwesioben.com/app/Http/Controllers/PaymentController.php
'system_default_currency'])->first()->value; $currency_code = Currency::find($default)->code; } $discount = session()->has('coupon_discount') ? session('coupon_discount') : 0; $order_wise_shipping_discount = CartManager::order_wise_shipping_discount(); $value = CartManager::cart_grand_total() - $discount - $order_wise_shipping_discount; $user = Helpers::get_customer(); $this->create_payment([ 'unit_id' => '', 'unit_name' => '', 'customer_id' => $user['id'], 'payment_amount' => $value, 'callback' => '', 'hook' => '', 'currency_code' => $currency_code, 'business_name' => '', 'business_logo_url' => '', ]); } }