|string> */ public function rules(): array { return [ 'qty_on_hand_base' => 'sometimes|numeric|min:0', 'safety_stock_base' => 'sometimes|numeric|min:0', ]; } /** * Get the error messages for the defined validation rules. * * @return array */ public function messages(): array { return [ 'qty_on_hand_base.numeric' => 'La quantité en stock doit être un nombre.', 'safety_stock_base.numeric' => 'Le stock de sécurité doit être un nombre.', ]; } }