Browse Source

fix: payment

tokumeikoi 3 năm trước cách đây
mục cha
commit
aa78761115
1 tập tin đã thay đổi với 5 bổ sung3 xóa
  1. 5 3
      app/Services/PaymentService.php

+ 5 - 3
app/Services/PaymentService.php

@@ -14,9 +14,11 @@ class PaymentService
         if (!class_exists($this->class)) abort(500, 'gate is not found');
         if ($id) $payment = Payment::find($id)->toArray();
         $this->config = [];
-        if (isset($payment) && $payment['config']) $this->config = json_decode($payment['config'], true);
-        $this->config['id'] = $id;
-        $this->config['enable'] = $payment['enable'];
+        if (isset($payment)) {
+            $this->config = json_decode($payment['config'], true);
+            $this->config['enable'] = $payment['enable'];
+            $this->config['id'] = $payment['id'];
+        };
         $this->payment = new $this->class($this->config);
     }