Skip to content
This repository was archived by the owner on Feb 24, 2023. It is now read-only.

Commit a9b767c

Browse files
committed
chore(*): update links/order
1 parent 02c2a6e commit a9b767c

6 files changed

+11
-11
lines changed

documentation.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,11 @@
22
- [Introduction](/docs/{{version}}/introduction)
33
- [Installation](/docs/{{version}}/installation)
44
- [Upgrading](/docs/{{version}}/upgrading)
5+
- Configuration
6+
- [General Settings](/docs/{{version}}/general-settings)
7+
- [Auditable Model Configuration](/docs/{{version}}/behavior-settings)
58
- Basic Usage
6-
- [Implementing audit](/docs/{{version}}/implementing-audit)
9+
- [Model Setup](/docs/{{version}}/model-setup)
710
- [Getting Audits](/docs/{{version}}/getting-audits)
811
- Advanced
912
- [Auditor](/docs/{{version}}/auditor)
@@ -12,9 +15,6 @@
1215
- [Audit Transformation](/docs/{{version}}/audit-transformation)
1316
- [Audit Presentation](/docs/{{version}}/audit-presentation)
1417
- [Audit Events](/docs/{{version}}/audit-events)
15-
- Configuration
16-
- [Package Options](/docs/{{version}}/general-settings)
17-
- [Auditable Model Configuration](/docs/{{version}}/behavior-settings)
1818
- Help
1919
- [Problems?](/docs/{{version}}/problems)
2020
- [Troubleshooting](/docs/{{version}}/troubleshooting)

general-settings.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# General settings
1+
# General Settings
22

33
The default auditing behavior can be changed by overriding the settings in the configuration file, which can be found in `config/audit.php`.
44

installation.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ php artisan auditing:install
7575

7676
This will create the `config/audit.php` configuration file and a migration for the `audits` table in the `database/` directory.
7777

78-
You can read more about the configuration options in the [Package Options](general-settings).
78+
You can read more about the configuration options in the [General Settings](general-settings) section.
7979

8080
# Database
8181
If needed, the migration file can be customised.
@@ -91,4 +91,4 @@ This is where the `Audit` records will be stored, by default.
9191

9292
# Resolver
9393
Finally, it's time to implement the `User` resolver.
94-
Follow the instructions in the [Package Options](general-settings) section, and you're done!
94+
Follow the instructions in the [General Settings](general-settings) section, and you're done!

implementing-audit.md model-setup.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Implementing audit
1+
# Model Setup
22

33
Setting up a model for auditing couldn't be simpler.
44
Just _use_ the `OwenIt\Auditing\Auditable` trait in the model you wish to audit and _implement_ the `OwenIt\Auditing\Contracts\Auditable` interface.

problems.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
If you found or have a problem with this package, let us know!
44

55
Bear in mind, however, that nobody likes their time wasted, so before you rush to create a new issue on GitHub, ensure that:
6-
- You have **read** the [installation](installation) and [configuration](general-settings) sections of the documentation;
7-
- The issue you're facing is **not** documented in the [troubleshooting](troubleshooting) section;
6+
- You have **read** the [Installation](installation) and [General Settings](general-settings) sections of the documentation;
7+
- The issue you're facing is **not** documented in the [Troubleshooting](troubleshooting) section;
88
- A [GitHub issue](https://github.com/owen-it/laravel-auditing/issues) with the problem you're having doesn't already exist (in an open or closed state);
99

1010
If all of the above applies, feel free to [open a new issue](https://github.com/owen-it/laravel-auditing/issues/new).

troubleshooting.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ This error happens when Laravel is set to cache the configuration.
104104
By default, the `User` resolver is a `Closure` in the `config/audits.php` file, which causes this issue.
105105
To overcome this, the resolver should be set as a FQCN instead.
106106

107-
Read the resolver [documentation](/docs/{{version}}/general-settings) for more information.
107+
Read the resolver [General Settings](general-settings) for more information.
108108

109109
## Attributes are considered modified, when they're not
110110

0 commit comments

Comments
 (0)