isProduction(); Config::$isSanitized = true; Config::$is3ds = true; $this->deposit = $deposit; } public function getSnapToken() { $items = [ [ 'id' => $this->deposit->id, 'price' => $this->deposit->debit, 'quantity' => 1, 'name' => $this->deposit->description, ], ]; $adminFee = Setting::getByKey('MIDTRANS_ADMIN_FEE'); if ($adminFee > 0) { $items[] = [ 'id' => 'tambahan_biaya_admin', 'price' => $adminFee, 'quantity' => 1, 'name' => 'tambahan_biaya_admin', ]; } $params = [ 'transaction_details' => [ 'order_id' => $this->deposit->id, 'gross_amount' => $this->deposit->debit, ], 'item_details' => $items, 'customer_details' => [ 'name' => $this->deposit->customer->fullname, 'email' => $this->deposit->customer->email, 'phone' => $this->deposit->customer->phone, 'address' => $this->deposit->customer->address, ], 'callbacks' => [ 'finish' => route('transactions.deposit.show', ['deposit' => $this->deposit->id]), ], ]; $snapToken = Snap::getSnapToken($params); return $snapToken; } }