fixed missing contact_email from registration

This commit is contained in:
Codex Agent
2025-12-22 17:54:42 +01:00
parent 1eda29cfce
commit c8f0f880d2
5 changed files with 5 additions and 1 deletions

View File

@@ -98,6 +98,7 @@ class CheckoutController extends Controller
'name' => $validated['first_name'].' '.$validated['last_name'],
'slug' => Str::slug($validated['first_name'].' '.$validated['last_name'].'-'.now()->timestamp),
'email' => $validated['email'],
'contact_email' => $validated['email'],
'is_active' => true,
'is_suspended' => false,
'subscription_tier' => 'free',