Route event registrations through Ladill Pay API.
Deploy Ladill Events / deploy (push) Successful in 29s

Ticket and contribution checkouts use platform Pay for fees and wallet settlement, with legacy QREP-* fallback via Billing.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
isaacclad
2026-06-08 05:20:30 +00:00
co-authored by Cursor
parent 55e2ec71b3
commit c92ad91a06
7 changed files with 187 additions and 57 deletions
@@ -0,0 +1,22 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
public function up(): void
{
Schema::table('qr_event_registrations', function (Blueprint $table) {
$table->unsignedBigInteger('pay_order_id')->nullable()->after('id');
});
}
public function down(): void
{
Schema::table('qr_event_registrations', function (Blueprint $table) {
$table->dropColumn('pay_order_id');
});
}
};