'decimal:4', 'wager_required' => 'decimal:4', 'wager_progress' => 'decimal:4', 'expires_at' => 'datetime', 'is_active' => 'boolean', 'completed_at' => 'datetime', ]; public function user(): BelongsTo { return $this->belongsTo(User::class); } public function promo(): BelongsTo { return $this->belongsTo(Promo::class); } }