浏览代码

refactor: ⚡️ remove coupon instance from event

IceToast 2 年之前
父节点
当前提交
4873992c48
共有 1 个文件被更改,包括 3 次插入2 次删除
  1. 3 2
      app/Events/CouponUsedEvent.php

+ 3 - 2
app/Events/CouponUsedEvent.php

@@ -19,9 +19,10 @@ class CouponUsedEvent
      *
      * @return void
      */
-    public function __construct(Coupon $coupon, string $couponCode)
+    public function __construct(string $couponCode)
     {
-        $this->coupon = $coupon;
+
         $this->couponCode = $couponCode;
+        $this->coupon = Coupon::where('code', $couponCode)->first();
     }
 }