currency = currency(); $this->setCredentialItems($paymentChannel); } private function handleConfigs() { \Config::set('cashu._merchant_id', $this->merchant_id); \Config::set('cashu._encryption_key', $this->encryption_key); \Config::set('cashu._testmod', $this->test_mode); } public function paymentRequest(Order $order) { $this->handleConfigs(); $generalSettings = getGeneralSettings(); $user = $order->user; $data = [ 'amount' => $this->makeAmountByCurrency($order->total_amount, $this->currency), 'currency' => $this->currency, 'display_text' => $generalSettings['site_name'].' payment', 'lang' => 'ar', // language arabic or english ( ar , en ) for lowercase 'item1' => 'order '.$order->id, 'item2' => '', 'item3' => '', 'item4' => '', 'item5' => '', 'service_name' => 'PaymentPhpAnonymous', // service name with setup on your account ]; return CashU::Go($data); } private function makeCallbackUrl() { } public function verify(Request $request) { $this->handleConfigs(); if (!empty($order)) { $order->update([ 'status' => Order::$fail ]); } return null; } }