*/ public function rules(): array { return [ 'source_event_id' => [ 'required', 'ulid', Rule::exists('events', 'id')->where('organisation_id', $this->route('event')->organisation_id), ], ]; } }