Require Ladill Pay only for Merchant checkouts.
Deploy Ladill Merchant / deploy (push) Successful in 51s

Remove custom/owner payment gateway option and always route customer payments through Ladill Pay with platform fees.
This commit is contained in:
isaacclad
2026-07-24 14:15:39 +00:00
parent ce41c1ece7
commit 0a3e142f47
3 changed files with 10 additions and 44 deletions
@@ -22,6 +22,8 @@ class PlanEntitlementService
public function canUseCustomPaymentGateway(User $owner): bool
{
return $this->has($owner, self::CUSTOM_PAYMENT_GATEWAY);
// Custom / owner payment gateways are retired. All checkouts use Ladill Pay
// with platform fees (see config/pay.php fee_tiers on the platform).
return false;
}
}