'datetime', 'expires_at' => 'datetime', 'created_at' => 'datetime', ]; /** * 所屬會員 */ public function member(): BelongsTo { return $this->belongsTo(Member::class); } /** * 禮品定義 */ public function giftDefinition(): BelongsTo { return $this->belongsTo(GiftDefinition::class); } /** * 待領取的禮品 */ public function scopePending($query) { return $query->where('status', 'pending') ->where(function ($q) { $q->whereNull('expires_at') ->orWhere('expires_at', '>', now()); }); } }