Skip to content
This repository was archived by the owner on Nov 27, 2024. It is now read-only.

Commit eb205ff

Browse files
author
adminuser
committed
Update links to 11.0
1 parent c99bbfd commit eb205ff

8 files changed

+16
-16
lines changed

announcements.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
<a name="introduction"></a>
77
## Introduction
88

9-
From the [Spark Kiosk](/docs/7.0/kiosk), you may create announcements to be displayed to your users. These announcements may be viewed by users when they click on the "notification bell" icon in the application's navigation bar. The notification bell will have an unread count indicator when there are unread announcements or notifications.
9+
From the [Spark Kiosk](/docs/11.0/kiosk), you may create announcements to be displayed to your users. These announcements may be viewed by users when they click on the "notification bell" icon in the application's navigation bar. The notification bell will have an unread count indicator when there are unread announcements or notifications.
1010

11-
To create an announcement, [configure your user as a developer](/docs/7.0/kiosk) and enter the Kiosk via the user profile drop-down menu, then click the "Announcements" tab.
11+
To create an announcement, [configure your user as a developer](/docs/11.0/kiosk) and enter the Kiosk via the user profile drop-down menu, then click the "Announcements" tab.
1212

1313
The announcement text supports Markdown, so feel free to use Markdown syntax within your announcement body. If needed, you may attach an "Action Button" to the announcement. Adding an action button gives users a chance to view more information about the announcement, such as a blog post.
1414

client-customization.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ When you upgrade your application using `php artisan spark:update`, any views th
2323

2424
When you install Spark, a `resources/js/components` directory is created to hold all of your own Vue components. To learn more about writing Vue components, be sure to check out the [Vue documentation](http://vuejs.org/guide/components.html). A sample `home` component is included with Spark and can serve as the main "dashboard" for your application. The corresponding view for this component is located at `resources/views/home.blade.php`.
2525

26-
For an example of an application with custom Vue components, check out the Spark [demo application](/docs/7.0/quickstart#demo-application).
26+
For an example of an application with custom Vue components, check out the Spark [demo application](/docs/11.0/quickstart#demo-application).
2727

2828
> **Note:** When you add additional components to your application, don't forget to `require` them in your `resources/js/app.js` file.
2929
@@ -55,7 +55,7 @@ Of course, once you customize a component, don't forget to run the `npm run dev`
5555

5656
Using Vue is required for the registration and settings views; however, you may use any JavaScript framework you want for the "bulk" for your application outside of these views.
5757

58-
> **Note:** Vue is required for the following features: notifications, support requests, and automatic handling of [shared API back-ends](/docs/7.0/api#sharing-your-api).
58+
> **Note:** Vue is required for the following features: notifications, support requests, and automatic handling of [shared API back-ends](/docs/11.0/api#sharing-your-api).
5959
6060
To use something other than Vue, modify your `resources/views/home.blade.php` view to extend the `spark::layouts.blade.app` template. This layout does not contain any JavaScript framework initialization and the Vue application will not be attached to the page, leaving you free to build your JavaScript client however you wish in your `resources/js/app.js` file. However, a few utility libraries such as Underscore, Moment, and jQuery are still loaded even when Vue is disabled for your application.
6161

european-vat.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Calling this method is all you need to do to enable European VAT collection. You
2828

2929
When a customer updates their billing information or VAT ID in your application, Spark will automatically call Stripe to update the subscription with the new correct tax rate percentage, so you do not have to do this manually.
3030

31-
For more information on customizing the currency used by your application, check out the [billing documentation](/docs/7.0/billing#currency-customization).
31+
For more information on customizing the currency used by your application, check out the [billing documentation](/docs/11.0/billing#currency-customization).
3232

3333
> **Note:** You should be sure to configure a webhook in your Stripe control panel to point to the `webhook/stripe` URI of your application. Otherwise, invoice information will not be gathered for customer payments.
3434

faq.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,12 +32,12 @@ Yes, you can have both user and team plans at the same time.
3232
<a name="limiting-resources"></a>
3333
### Does Spark support limiting the resources for a given plan?
3434

35-
Yes, you can limit [team plans](/docs/7.0/billing#configuring-team-billing-plans) by team members. You can also limit plans by [your own arbitrary conditions](/docs/7.0/billing#constraining-access-to-plans).
35+
Yes, you can limit [team plans](/docs/11.0/billing#configuring-team-billing-plans) by team members. You can also limit plans by [your own arbitrary conditions](/docs/11.0/billing#constraining-access-to-plans).
3636

3737
<a name="vat"></a>
3838
### Does Spark support collecting European VAT?
3939

40-
Yes, Spark [supports collecting European VAT](/docs/7.0/european-vat).
40+
Yes, Spark [supports collecting European VAT](/docs/11.0/european-vat).
4141

4242
<a name="existing"></a>
4343
### Can Spark be integrated into an existing application?

installation.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ This command will create a new Laravel project in a directory matching the given
6868

6969
> **Note:** Once the new Spark project has been created, you will need to migrate your new project's database using the `php artisan migrate` Artisan command. If you are not using Homestead, you will also need to update your `.env` file with your database credentials.
7070
71-
Once Spark is installed, you are ready to [configure your application](/docs/10.0/billing).
71+
Once Spark is installed, you are ready to [configure your application](/docs/11.0/billing).
7272

7373
<a name="installation-via-composer"></a>
7474
### Installation Via Composer

kiosk.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<a name="introduction"></a>
1010
## Introduction
1111

12-
The Spark developer Kiosk is a special area of your Spark application that is only accessible to developers and provides unique, developer-only features such as [creating announcements](/docs/7.0/announcements), viewing application revenue, impersonating other users, and more.
12+
The Spark developer Kiosk is a special area of your Spark application that is only accessible to developers and provides unique, developer-only features such as [creating announcements](/docs/11.0/announcements), viewing application revenue, impersonating other users, and more.
1313

1414
#### Developer Middleware
1515

quickstart.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ In this guide, we'll walk through installing Spark and writing the first view fo
1616
<a name="installing-spark"></a>
1717
## Installing Spark
1818

19-
To install Spark, follow the instructions in the [installation guide](/docs/7.0/installation).
19+
To install Spark, follow the instructions in the [installation guide](/docs/11.0/installation).
2020

2121
#### Post Installation Setup
2222

23-
Once Spark is installed, make sure the NPM dependencies have been installed via the `npm install` command, the `npm run dev` command has been executed, and the database migrations have run. You should also configure your e-mail address as a "developer" so that you have access to the [Kiosk](/docs/10.0/kiosk). To do this, add your e-mail address to the `$developers` property in the `App\Providers\SparkServiceProvider`.
23+
Once Spark is installed, make sure the NPM dependencies have been installed via the `npm install` command, the `npm run dev` command has been executed, and the database migrations have run. You should also configure your e-mail address as a "developer" so that you have access to the [Kiosk](/docs/11.0/kiosk). To do this, add your e-mail address to the `$developers` property in the `App\Providers\SparkServiceProvider`.
2424

2525
<a name="configuring-billing-plans"></a>
2626
## Configuring Billing Plans
@@ -29,7 +29,7 @@ Once your Spark project has been created, take a look at the `App\Providers\Spar
2929

3030
> **Note:** Spark does not automatically define plans within Stripe. You must define those manually on the provider of your choice.
3131
32-
By default, Spark is configured to require no credit-card up front and to grant new users a free trial period of 10 days. This configuration should work perfectly for the majority of applications. For more information on configuring billing plans, check out the [billing documentation](/docs/10.0/billing).
32+
By default, Spark is configured to require no credit-card up front and to grant new users a free trial period of 10 days. This configuration should work perfectly for the majority of applications. For more information on configuring billing plans, check out the [billing documentation](/docs/11.0/billing).
3333

3434
<a name="building-your-application"></a>
3535
## Building Your Application
@@ -42,4 +42,4 @@ Of course, at this point, you may simply build your Laravel application however
4242

4343
### Read The Documentation
4444

45-
For more information on using Spark, check out the rest of this documentation, which includes information on [back-end customization](/docs/10.0/customization) and [front-end customization](/docs/10.0/client-customization), as well as documentation pages covering many other areas of Spark. **It's very important that you read through this documentation in its entirety.**
45+
For more information on using Spark, check out the rest of this documentation, which includes information on [back-end customization](/docs/11.0/customization) and [front-end customization](/docs/11.0/client-customization), as well as documentation pages covering many other areas of Spark. **It's very important that you read through this documentation in its entirety.**

teams.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ To use teams, initialize your Spark project using the `--team-billing` flag:
1818

1919
spark new project-name --team-billing
2020

21-
If you installed your application without the `--team-billing` flag but still want to enable teams later, you may simply add the `Laravel\Spark\CanJoinTeams` trait to your `User` model. In addition, you may wish to review the documentation on [team billing](/docs/9.0/billing#configuring-team-billing-plans):
21+
If you installed your application without the `--team-billing` flag but still want to enable teams later, you may simply add the `Laravel\Spark\CanJoinTeams` trait to your `User` model. In addition, you may wish to review the documentation on [team billing](/docs/11.0/billing#configuring-team-billing-plans):
2222

2323
<?php
2424

@@ -45,7 +45,7 @@ By default, Spark uses the "/teams/" segment in URIs to refer to teams. However,
4545

4646
> Be sure to call this method in the `register` method of your service provider, as Spark will not function correctly if it is called in the `boot` method. Additionally, make sure you pass the plural, lowercase form of the word.
4747
48-
To change the word used to refer to "teams" in views, you should update the `resources/lang/en/teams.php` [language file](/docs/10.0/localization).
48+
To change the word used to refer to "teams" in views, you should update the `resources/lang/en/teams.php` [language file](/docs/11.0/localization).
4949

5050
<a name="accessing-the-users-teams"></a>
5151
## Accessing The User's Teams
@@ -140,7 +140,7 @@ The `ownedTeams` method returns all of the user's owned teams:
140140
<a name="team-billing"></a>
141141
## Team Billing
142142

143-
Team billing allows your Spark applications to provide billing plans on a per-team basis, meaning users may subscribe to different billing plans for each team they own. For more information on configuring team billing, please refer to the [billing documentation](/docs/9.0/billing#configuring-team-billing-plans)
143+
Team billing allows your Spark applications to provide billing plans on a per-team basis, meaning users may subscribe to different billing plans for each team they own. For more information on configuring team billing, please refer to the [billing documentation](/docs/11.0/billing#configuring-team-billing-plans)
144144

145145
<a name="using-teams-without-team-billing"></a>
146146
## Using Teams Without Team Billing

0 commit comments

Comments
 (0)