Skip to content

Commit 659ee27

Browse files
committed
fix broken links
1 parent e68cc08 commit 659ee27

7 files changed

Lines changed: 10 additions & 11 deletions

File tree

docs/community-and-support/troubleshooting.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ Please refer to Livewire Documentation [Multiple instances of Alpine](https://li
1919

2020
## Undefined variable "$foobar"
2121

22-
Please refer to [Theme, layout, view and "variable undefined" errors](/get-started/troubleshooting#theme-layout-view-and-variable-undefined-errors).
22+
Please refer to [Theme, layout, view and "variable undefined" errors](/community-and-support/troubleshooting#theme-layout-view-and-variable-undefined-errors).
2323

2424
## Call to undefined method "fooBar()"
2525

2626
Please check the [Upgrade Guide](/release-notes-and-upgrade/upgrade-guide).
2727

28-
Additionally, you may also learn the section [Theme, layout, view and "variable undefined" errors](/get-started/troubleshooting#theme-layout-view-and-variable-undefined-errors).
28+
Additionally, you may also learn the section [Theme, layout, view and "variable undefined" errors](/community-and-support/troubleshooting#theme-layout-view-and-variable-undefined-errors).
2929

3030
## Theme, layout, view and "variable undefined" errors
3131

docs/get-started/create-powergrid-table.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Here you will find:
1313

1414
## Introduction
1515

16-
Now that you’ve finished the PowerGrid [Base Configuration](get-started/configure-powergrid#base-configuration) process, it’s time to create your first Table Component.
16+
Now that you’ve finished the PowerGrid [Base Configuration](/get-started/configure-powergrid#base-configuration) process, it’s time to create your first Table Component.
1717

1818
This will be your DataTable, used in the app pages to display your data.
1919

docs/powergrid/configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ The configuration file `config/livewire-powergrid.php` controls how PowerGrid in
1919

2020
## Installation Setup
2121

22-
See [Base Configuration](get-started/configure-powergrid) for details on completing the initial PowerGrid setup.
22+
See [Base Configuration](/get-started/configure-powergrid) for details on completing the initial PowerGrid setup.
2323

2424
## Core Settings
2525

docs/powergrid/testing-a-powergrid-table.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,14 @@ Let’s explore how to test PowerGrid components using browser and Livewire test
2525

2626
[Pest Browser Testing](https://pestphp.com/docs/browser-testing) allows you to simulate authentic user interactions within your application—including clicking elements, typing input, and selecting options in real time.
2727

28-
.
29-
The next example tests the [PowerGrid Demo](https://demo.livewire-powergrid.com/examples/demo-product) component, ensuring that clicking and typing in the filter field will perform the search query and return the expected records.
28+
The next example opens a page containing the ProductTable and confirms that interacting with the filter field—by typing and clicking—properly triggers a search query and returns the expected results.
3029

31-
```php <tests/Browser/FilterFieldTest.php>
30+
```php <tests/Browser/ProductTableTest.php>
3231
$searchField = '[wire\:model\.live\.debounce\.700ms="search"]';
3332

3433
it('can filter by existing record')
3534
->withVite() //enable Vite for this test
36-
->visit('/examples/demo-product')
35+
->visit('/products')
3736
->assertSee('Arkansas Possum Pie')
3837
->fill($searchField, 'Bacalhau')
3938
->assertDontSee('Arkansas Possum Pie')
@@ -48,7 +47,7 @@ You should follow the same concept defined in the [livewire documentation](https
4847

4948
### Testing Actions Buttons
5049

51-
Reference: [action button](.././table-features/buttons)
50+
Reference: [action button](/table-features/buttons)
5251

5352
PowerGrid provides a simple testing utility to ensure that a button's structure complies with standards for server-side Blade rendering.
5453

docs/release-notes-and-upgrade/upgrade-guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ class MyTheme extends Theme
110110
}
111111
```
112112

113-
See the [Custom Theme](/expanding-powergrid/custom-theme) page for full documentation.
113+
See the [Custom Theme](/powergrid/custom-theme) page for full documentation.
114114

115115
## Step 4: Migrate Custom Theme Method
116116

File renamed without changes.

docs/table-features/exporting-data.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ composer require openspout/openspout:^5.0 # or ^4.0
2626
```
2727

2828
::: warning ACTION REQUIRED
29-
You must update [Powergrid configuration](powergrid/configuration#openspout) when switching between Openspout versions.
29+
You must update [Powergrid configuration](/powergrid/configuration#openspout) when switching between Openspout versions.
3030
:::
3131

3232
## Enable Data Export

0 commit comments

Comments
 (0)