'datetime', ]; /** * Get the promo code that owns the redemption. */ public function promoCode(): BelongsTo { return $this->belongsTo(PromoCode::class); } /** * Get the user that owns the redemption. */ public function user(): BelongsTo { return $this->belongsTo(User::class); } }