*/ public function rules(): array { return [ 'product_id' => ['required', 'integer', 'exists:products,id'], 'quantity' => ['nullable', 'integer'], ]; } }