Skip to content

Commit cc033d9

Browse files
committed
fix: patch up broken links
1 parent 2a08e43 commit cc033d9

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/docs/database/migrations.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ class CreateUsers extends Database {
6363
```
6464

6565
::: tip Note
66-
Instead of building your migrations from scratch, you can use Leaf's schema builder to generate migrations from JSON data. [Learn more](/docs/mvc/schema).
66+
Instead of building your migrations from scratch, you can use Leaf's schema builder to generate migrations from JSON data. [Learn more](/docs/database/schema).
6767
:::
6868

6969
## Running migrations

src/docs/database/schema.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ In the example above, the `users` schema will be used to generate the migration.
5757
php leaf db:migrate
5858
```
5959

60-
Read more about [migrations](/docs/mvc/migrations).
60+
Read more about [migrations](/docs/database/migrations).
6161

6262
## Data Types
6363

src/docs/frontend/inertia.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ You should create a base PHP file that will be used to render your app. By defau
280280
Inertia::setRoot('myfiles/_base');
281281
```
282282

283-
Since the Leaf Inertia PHP adapter is built using the [Bare UI engine](/modules/views/bareui/), your base file needs to maintain the `.view.php` extension. For example, if you're using React, your base PHP file should look like this:
283+
Since the Leaf Inertia PHP adapter is built using the [Bare UI engine](/docs/frontend/bareui), your base file needs to maintain the `.view.php` extension. For example, if you're using React, your base PHP file should look like this:
284284

285285
```php
286286
<!DOCTYPE html>

src/docs/mvc/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ For a fresh MVC app, the directory structure looks like this:
105105

106106
- ### The `config` directory
107107

108-
The `config` directory contains the configuration files for your application. These are used to configure how Leaf and it's modules interact with your application. You can find more information about the configuration files in the [Configuration](/docs/mvc/config) section.
108+
The `config` directory contains the configuration files for your application. These are used to configure how Leaf and it's modules interact with your application. Each file controls a different feature of your application, e.g. the `app.php` file is used to configure the application, the `database.php` file is used to configure the database connection, etc.
109109

110110
- ### The `public` directory
111111

0 commit comments

Comments
 (0)