'decimal:2', 'validity_days' => 'integer', 'is_active' => 'boolean', ]; /** * 適用等級 */ public function tier(): BelongsTo { return $this->belongsTo(MembershipTier::class, 'tier_id'); } /** * 發放紀錄 */ public function memberGifts(): HasMany { return $this->hasMany(MemberGift::class); } /** * 有效禮品 */ public function scopeActive($query) { return $query->where('is_active', true); } }