Rule::requiredIf(fn() => $this->method() == 'POST'), 'first_subactivity_id' => Rule::requiredIf(fn() => $this->method() == 'POST'), 'subscription_id' => Rule::requiredIf(function() { if ($this->method() != 'POST') { 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', ]; } 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') && $member->nami_id === null) { CreateJob::dispatch($member, auth()->user()); } if($this->input('has_nami') && $member->nami_id !== null) { UpdateJob::dispatch($member, auth()->user()); } if(!$this->input('has_nami') && $member->nami_id !== null) { DeleteJob::dispatch($member, auth()->user()); } } }