['nullable', 'string', 'max:255'], 'body' => ['nullable', 'string'], 'tags' => ['array'], 'photos' => [new LoadedMedia($this)], 'photos.*' => 'image', 'price' => ['nullable', 'numeric', Rule::requiredIf($this->is_paid == 1)], 'photos_paid' => ['sometimes', 'nullable', 'array', Rule::requiredIf($this->is_paid == 1)], 'photos_paid.*' => 'image', 'removedItems' => ['nullable', 'array'], ]; } }