From 4437dd781da34be4d189424413de7d414f18fc4b Mon Sep 17 00:00:00 2001 From: isaacclad Date: Fri, 19 Jun 2026 19:51:36 +0000 Subject: [PATCH] Lower Events platform fees to 3.5% and 5.5%. Contributions drop from 5% to 3.5%; tickets drop from 9% to 5.5%. Co-authored-by: Cursor --- app/Services/Events/EventRegistrationService.php | 2 +- resources/views/events/payouts.blade.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Services/Events/EventRegistrationService.php b/app/Services/Events/EventRegistrationService.php index bc2b045..e965b03 100644 --- a/app/Services/Events/EventRegistrationService.php +++ b/app/Services/Events/EventRegistrationService.php @@ -208,7 +208,7 @@ class EventRegistrationService throw new RuntimeException('Payment was not successful.'); } - $feeRate = ($registration->qrCode?->content()['mode'] ?? 'ticketing') === 'contributions' ? 0.05 : 0.09; + $feeRate = ($registration->qrCode?->content()['mode'] ?? 'ticketing') === 'contributions' ? 0.035 : 0.055; $paidAmount = round(($data['amount'] ?? 0) / 100, 2); $platformFee = round($paidAmount * $feeRate, 2); diff --git a/resources/views/events/payouts.blade.php b/resources/views/events/payouts.blade.php index b06f883..c054d06 100644 --- a/resources/views/events/payouts.blade.php +++ b/resources/views/events/payouts.blade.php @@ -4,7 +4,7 @@

Payments & Payouts

-

Ticket and contribution revenue settles into your Ladill wallet (9% tickets / 5% contributions).

+

Ticket and contribution revenue settles into your Ladill wallet (5.5% tickets / 3.5% contributions).