refactor: ⚡️ remove coupon instance from event
This commit is contained in:
parent
fc84e7d1db
commit
4873992c48
1 changed files with 3 additions and 2 deletions
|
@ -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();
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue