Skip to content

Commit 21a0900

Browse files
Merge pull request #9 from harshqa-webkul/external-links-correction
external-links-correction
2 parents b10a80c + 9c0265a commit 21a0900

17 files changed

Lines changed: 24 additions & 22 deletions

File tree

.vitepress/config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,8 @@ export default defineConfig({
8888

8989
footer: {
9090
message:
91-
'Released under the <a href="https://opensource.org/licenses/mit" target="_blank" class="mit-license">MIT License</a>.',
92-
copyright: `Copyright © ${new Date().getFullYear()} Webkul`
91+
'Released under the <a href="https://opensource.org/licenses/mit" target="_blank" rel="nofollow external noopener noreferrer" class="mit-license">MIT License</a>.',
92+
copyright: `Copyright © ${new Date().getFullYear()} Aureus ERP`
9393
},
9494

9595
lastUpdated: {

.vitepress/theme/components/Solutions.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@
7171
reliability, performance, and security for mission-critical operations
7272
</p>
7373
<div class="feature-link">
74-
<a href="https://laravel.com">Learn more →</a>
74+
<a href="https://laravel.com" rel="nofollow external noopener noreferrer">Learn more →</a>
7575
</div>
7676
</div>
7777
</div>

src/master/advanced/dashboard.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,4 +198,4 @@ public function getColumns(): int|string|array
198198

199199
## More Information
200200

201-
For more details, refer to the [FilamentPHP Dashboard Documentation](https://filamentphp.com/docs/3.x/panels/dashboard).
201+
For more details, refer to the <a href="https://filamentphp.com/docs/3.x/panels/dashboard" rel="nofollow external noopener noreferrer" target="_blank">FilamentPHP Dashboard Documentation</a>.

src/master/advanced/progress-stepper.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,4 +141,5 @@ ProgressStepper::make('status')
141141

142142
## More Information
143143

144-
For more details, refer to the [FilamentPHP Toggle Buttons](https://filamentphp.com/docs/3.x/forms/fields/toggle-buttons).
144+
For more details, refer to the <a href="https://filamentphp.com/docs/3.x/forms/fields/toggle-buttons" rel="nofollow external noopener noreferrer" target="_blank">FilamentPHP Toggle Buttons</a>.
145+

src/master/architecture/frontend.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ FilamentPHP integrates smoothly with Laravel and is optimized for rapid developm
1313

1414
## Livewire
1515

16-
[Livewire](https://livewire.laravel.com/) powers the dynamic interactions in Aureus ERP without requiring a complex JavaScript framework.
16+
<a href="https://livewire.laravel.com/" rel="nofollow external noopener noreferrer" target="_blank">Livewire</a> powers the dynamic interactions in Aureus ERP without requiring a complex JavaScript framework.
1717

1818
- **Reactivity**: Livewire enables real-time updates without a full-page reload.
1919
- **Component-Based**: Each feature in Aureus ERP is structured as Livewire components, ensuring modularity and maintainability.
@@ -22,7 +22,7 @@ Livewire enhances the interactivity of forms, tables, and dashboards while maint
2222

2323
## Alpine.js
2424

25-
[Alpine.js](https://alpinejs.dev/) is used alongside Livewire to handle lightweight frontend interactions.
25+
<a href="https://alpinejs.dev/" rel="nofollow external noopener noreferrer" target="_blank">Alpine.js</a> is used alongside Livewire to handle lightweight frontend interactions.
2626

2727
- **Minimal JavaScript**: Provides a simple yet powerful way to add dynamic behavior without the overhead of a full JavaScript framework.
2828
- **Declarative Syntax**: Offers Vue-like reactivity in a minimal package.
@@ -31,7 +31,7 @@ Alpine.js is particularly useful for dropdowns, modals, and UI state management
3131

3232
## Tailwind CSS
3333

34-
[Tailwind CSS](https://tailwindcss.com/) is the primary styling framework, offering a **utility-first** approach that makes designing responsive and modern UIs more efficient.
34+
<a href="https://tailwindcss.com/" rel="nofollow external noopener noreferrer" target="_blank">Tailwind CSS</a> is the primary styling framework, offering a **utility-first** approach that makes designing responsive and modern UIs more efficient.
3535

3636
- **Highly Customizable**: The `tailwind.config.js` file allows for complete theme customization.
3737
- **Performance Optimized**: Unused styles are purged in production for minimal CSS footprint.

src/master/architecture/panels.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Admin Panel Provider
22

3-
The Admin [Panel](https://filamentphp.com/docs/3.x/panels/configuration) Provider configures the administrative backend interface using FilamentPHP. It establishes authentication mechanisms, visual components, middleware configurations, and plugin integrations for administrative users.
3+
The Admin <a href="https://filamentphp.com/docs/3.x/panels/configuration" rel="nofollow external noopener noreferrer" target="_blank">Panel</a> Provider configures the administrative backend interface using FilamentPHP. It establishes authentication mechanisms, visual components, middleware configurations, and plugin integrations for administrative users.
44

55
## Configuration Breakdown
66

src/master/getting-started/clusters.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,4 +107,4 @@ For better organization, store related resources and pages inside a directory ma
107107

108108
## More Information
109109

110-
For more details, refer to the [FilamentPHP Clusters Documentation](https://filamentphp.com/docs/3.x/panels/clusters).
110+
For more details, refer to the <a href="https://filamentphp.com/docs/3.x/panels/clusters" rel="nofollow external noopener noreferrer" target="_blank">FilamentPHP Clusters Documentation</a>.

src/master/getting-started/migrations.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# **Migrations**
22

3-
[Migrations](https://laravel.com/docs/11.x/migrations) provide a structured way to manage database schemas, enabling version control for database changes. They ensure consistency across development and production environments.
3+
<a href="https://laravel.com/docs/11.x/migrations" rel="nofollow external noopener noreferrer" target="_blank">Migrations</a> provide a structured way to manage database schemas, enabling version control for database changes. They ensure consistency across development and production environments.
44

55
## **Key Features of Migrations**
66

@@ -104,6 +104,7 @@ class BlogServiceProvider extends PackageServiceProvider
104104
## **Understanding Migration Registration**
105105

106106
1. **`hasMigrations([...])`**
107+
107108
- This method registers the migration file inside the plugin.
108109
- The filename should match the migration file placed in `database/migrations/`.
109110
- Example: `'2025_01_06_072032_create_posts_table'`

src/master/getting-started/pages.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ The **Aureus ERP** Filament plugin provides robust project management capabiliti
3434

3535
## What are Filament Pages?
3636

37-
[Filament Pages](https://filamentphp.com/docs/3.x/panels/pages) are custom UI components that provide full-page interfaces within your admin panel.
37+
<a href="https://filamentphp.com/docs/3.x/panels/pages" rel="nofollow external noopener noreferrer" target="_blank">Filament Pages</a> are custom UI components that provide full-page interfaces within your admin panel.
3838

3939
### Key Page Features in FilamentPHP
4040

src/master/getting-started/resources/creating-record.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,4 +116,4 @@ class CreatePost extends CreateRecord
116116
- **Post-Creation Processing**: Calls `updateStockLevels()` to recalculate stock availability after post creation.
117117
- **Redirection & Notifications**: Redirects to the post view and notifies the user on successful creation.
118118

119-
For more details, check the **[Official Filament Documentation](https://filamentphp.com/docs/3.x/panels/resources/creating-records)**. 🚀
119+
For more details, check the **<a href="https://filamentphp.com/docs/3.x/panels/resources/creating-records" rel="nofollow external noopener noreferrer" target="_blank">Official Filament Documentation</a>**. 🚀

0 commit comments

Comments
 (0)