diff --git a/notifications.md b/notifications.md
index 8118ff66bf..29de44d933 100644
--- a/notifications.md
+++ b/notifications.md
@@ -275,6 +275,94 @@ public function viaQueues(): array
}
```
+
+#### Customizing Queued Notification Job Properties
+
+You may customize the behavior of the underlying queued job by defining properties on your notification class. These properties will be inherited by the queued job that sends the notification:
+
+```php
+addMinutes(5);
+}
+```
+
+> [!NOTE]
+> For more information on these job properties and methods, please review the documentation on [queued jobs](/docs/{{version}}/queues#max-job-attempts-and-timeout).
+
#### Queued Notification Middleware