第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

未找到列:1054 Champ 'payment_gateway' inconnu dans

未找到列:1054 Champ 'payment_gateway' inconnu dans

PHP
慕姐8265434 2023-04-21 13:12:14
我參加了使用 laravel 的電子商務(wù)培訓(xùn),我想通過(guò) paypal 購(gòu)物車進(jìn)行在線支付,但它在payment_gateway表格訂單領(lǐng)域給我錯(cuò)誤,Column not found: 1054 Field 'payment_gateway' unknown in field list。你好,我參加了一個(gè)使用 laravel 的電子商務(wù)培訓(xùn),我想通過(guò) paypal 購(gòu)物車進(jìn)行在線支付,但它在payment_gateway表格訂單領(lǐng)域給我錯(cuò)誤,Column not found: 1054 Field 'payment_gateway' unknown in field list。checkoutController.php/**     * Store a newly created resource in storage.     *     * @param  \Illuminate\Http\Request  $request     * @return \Illuminate\Http\Response     */    public function paypalCheckout(Request $request)    {        // Check race condition when there are less items available to purchase        if ($this->productsAreNoLongerAvailable()) {            return back()->withErrors('Sorry! One of the items in your cart is no longer avialble.');        }        $gateway = new \Braintree\Gateway([            'environment' => config('services.braintree.environment'),            'merchantId' => config('services.braintree.merchantId'),            'publicKey' => config('services.braintree.publicKey'),            'privateKey' => config('services.braintree.privateKey')        ]);        $nonce = $request->payment_method_nonce;        $result = $gateway->transaction()->sale([            'amount' => round(getNumbers()->get('newTotal') / 100, 2),            'paymentMethodNonce' => $nonce,            'options' => [                'submitForSettlement' => true            ]        ]);        $transaction = $result->transaction;        if ($result->success) {            $order = $this->addToOrdersTablesPaypal(                $transaction->paypal['payerEmail'],                $transaction->paypal['payerFirstName'].' '.$transaction->paypal['payerLastName'],                null            );
查看完整描述

2 回答

?
九州編程

TA貢獻(xiàn)1785條經(jīng)驗(yàn) 獲得超4個(gè)贊

打字的時(shí)候好像打錯(cuò)了payement_gateway => payment_gateway



查看完整回答
反對(duì) 回復(fù) 2023-04-21
?
慕俠2389804

TA貢獻(xiàn)1719條經(jīng)驗(yàn) 獲得超6個(gè)贊

確保了:

1- 將 payment_gateway 添加到 Order 模型的可填充數(shù)組

2-payment_gateway 列在表“訂單”列中...


查看完整回答
反對(duì) 回復(fù) 2023-04-21
  • 2 回答
  • 0 關(guān)注
  • 270 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)