Rule::requiredIf(fn () => 'POST' == $this->method()), 'first_subactivity_id' => Rule::requiredIf(fn () => 'POST' == $this->method()), 'subscription_id' => Rule::requiredIf(function () { if ('POST' != $this->method()) { return false; } if (!$this->input('first_activity_id')) { return true; } return Str::contains(Activity::findOrFail($this->input('first_activity_id'))->name, '€'); }), 'firstname' => 'required', 'lastname' => 'required', 'address' => 'required', 'zip' => 'required|numeric', 'location' => 'required', 'birthday' => 'date|required', 'region_id' => 'nullable|exists:regions,id', 'country_id' => 'required|exists:countries,id', 'nationality_id' => 'required|exists:nationalities,id', 'email' => 'nullable|email', 'email_parents' => 'nullable|email', 'bill_kind_id' => 'nullable|exists:bill_kinds,id', 'joined_at' => 'date|required', 'confession_id' => 'nullable|exists:confessions,id', 'efz' => 'nullable|date', ]; } public function persistCreate(): void { $this->merge(['group_id' => Group::where('nami_id', Auth::user()->getNamiGroupId())->firstOrFail()->id]); $member = Member::create($this->input()); if ($this->input('has_nami')) { CreateJob::dispatch($member, auth()->user()); } } public function persistUpdate(Member $member): void { $member->update($this->input()); if ($this->input('has_nami') && null === $member->nami_id) { CreateJob::dispatch($member, auth()->user()); } if ($this->input('has_nami') && null !== $member->nami_id) { UpdateJob::dispatch($member, auth()->user()); } if (!$this->input('has_nami') && null !== $member->nami_id) { DeleteJob::dispatch($member, auth()->user()); } } }