diff --git a/requests.md b/requests.md
index dd35ff68f84..bfcc95d2467 100644
--- a/requests.md
+++ b/requests.md
@@ -310,6 +310,13 @@ Instead of retrieving the request's input data as a primitive `string`, you may
$name = $request->string('name')->trim();
+
+#### Retrieving Integer Input Values
+
+To retrieve input values as integers, you may use the `integer` method. This method will attempt to cast the input value to an integer. If the input is not present or the cast fails, it will return the default value you specify. This is particularly useful for pagination or other numeric inputs:
+
+ $perPage = $request->integer('per_page');
+
#### Retrieving Boolean Input Values