Migrate billing from Paddle to Lemon Squeezy

This commit is contained in:
Codex Agent
2026-02-03 10:59:54 +01:00
parent 2f4ebfefd4
commit a0ef90e13a
228 changed files with 4369 additions and 4067 deletions

View File

@@ -15,9 +15,9 @@ Route::prefix('_testing')->middleware(EnsureE2ETestingAccess::class)->group(func
Route::post('/coupons/seed', [TestCouponController::class, 'store'])->name('testing.coupons.seed');
Route::get('/checkout/sessions/latest', [TestCheckoutController::class, 'latest'])->name('testing.checkout.sessions.latest');
Route::post('/checkout/sessions/{session}/simulate-paddle', [TestCheckoutController::class, 'simulatePaddle'])
Route::post('/checkout/sessions/{session}/simulate-lemonsqueezy', [TestCheckoutController::class, 'simulateLemonSqueezy'])
->whereUuid('session')
->name('testing.checkout.sessions.simulate-paddle');
->name('testing.checkout.sessions.simulate-lemonsqueezy');
Route::get('/events/join-token', [TestEventController::class, 'joinToken'])->name('testing.events.join-token');
Route::post('/guest-events', [TestGuestEventController::class, 'store'])->name('testing.guest-events.store');