Make guest event registration email-optional like Ladill Mini.
Deploy Ladill Events / deploy (push) Successful in 35s

Attendees without Ladill accounts no longer need email at checkout; phone is required so organizers can reach them.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
isaacclad
2026-06-27 14:18:45 +00:00
co-authored by Cursor
parent c3fa39a053
commit e234889f60
3 changed files with 30 additions and 33 deletions
@@ -29,8 +29,8 @@ class EventRegistrationController extends Controller
'tier' => ['required', 'string', 'max:80'],
'amount' => ['nullable', 'numeric', 'min:1', 'max:1000000'],
'attendee_name' => ['required', 'string', 'max:120'],
'attendee_email' => ['required', 'email', 'max:200'],
'attendee_phone' => ['nullable', 'string', 'max:30'],
'attendee_email' => ['nullable', 'email', 'max:200'],
'attendee_phone' => ['required', 'string', 'max:30'],
'badge_fields' => ['nullable', 'array'],
]);