Skip to content

Commit 378b3fa

Browse files
authored
[9.x] Fix typo (laravel#7982)
* Fix Typo in billing.md * Fix Typo in envoy.md * Fix Typo in sail.md * Revert "Fix Typo in sail.md" This reverts commit a2232c6.
1 parent 087dae3 commit 378b3fa

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

billing.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1575,7 +1575,7 @@ Alternatively, you may use the `invoiceFor` method to make a "one-off" charge ag
15751575

15761576
$user->invoiceFor('One Time Fee', 500);
15771577

1578-
Although the `invoiceFor` method is available for you to use, it is recommendeded that you use the `invoicePrice` and `tabPrice` methods with pre-defined prices. By doing so, you will have access to better analytics and data within your Stripe dashboard regarding your sales on a per-product basis.
1578+
Although the `invoiceFor` method is available for you to use, it is recommended that you use the `invoicePrice` and `tabPrice` methods with pre-defined prices. By doing so, you will have access to better analytics and data within your Stripe dashboard regarding your sales on a per-product basis.
15791579

15801580
> {note} The `invoice`, `invoicePrice`, and `invoiceFor` methods will create a Stripe invoice which will retry failed billing attempts. If you do not want invoices to retry failed charges, you will need to close them using the Stripe API after the first failed charge.
15811581
@@ -1659,7 +1659,7 @@ To retrieve the upcoming invoice for a customer, you may use the `upcomingInvoic
16591659

16601660
$invoice = $user->upcomingInvoice();
16611661

1662-
Similary, if the customer has multiple subscriptions, you can also retrieve the upcoming invoice for a specific subscription:
1662+
Similarly, if the customer has multiple subscriptions, you can also retrieve the upcoming invoice for a specific subscription:
16631663

16641664
$invoice = $user->subscription('default')->upcomingInvoice();
16651665

envoy.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ Envoy also supports sending notifications to [Telegram](https://telegram.org) af
323323
<a name="microsoft-teams"></a>
324324
### Microsoft Teams
325325

326-
Envoy also supports sending notifications to [Microsoft Teams](https://www.microsoft.com/en-us/microsoft-teams) after each task is executed. The `@microsoftTeams` directive accepts a Teams Webhook (required), a message, theme color (success, info, warning, error), and an array of options. You may retrieve your Teams Webook by creating a new [incoming webhook](https://docs.microsoft.com/en-us/microsoftteams/platform/webhooks-and-connectors/how-to/add-incoming-webhook). The Teams API has many other attributes to customize your message box like title, summary, and sections. You can find more information on the [Microsoft Teams documentation](https://docs.microsoft.com/en-us/microsoftteams/platform/webhooks-and-connectors/how-to/connectors-using?tabs=cURL#example-of-connector-message). You should pass the entire Webhook URL into the `@microsoftTeams` directive:
326+
Envoy also supports sending notifications to [Microsoft Teams](https://www.microsoft.com/en-us/microsoft-teams) after each task is executed. The `@microsoftTeams` directive accepts a Teams Webhook (required), a message, theme color (success, info, warning, error), and an array of options. You may retrieve your Teams Webhook by creating a new [incoming webhook](https://docs.microsoft.com/en-us/microsoftteams/platform/webhooks-and-connectors/how-to/add-incoming-webhook). The Teams API has many other attributes to customize your message box like title, summary, and sections. You can find more information on the [Microsoft Teams documentation](https://docs.microsoft.com/en-us/microsoftteams/platform/webhooks-and-connectors/how-to/connectors-using?tabs=cURL#example-of-connector-message). You should pass the entire Webhook URL into the `@microsoftTeams` directive:
327327

328328
```blade
329329
@finished

0 commit comments

Comments
 (0)