Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .vitepress/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,8 @@ export default defineConfig({

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

lastUpdated: {
Expand Down
2 changes: 1 addition & 1 deletion .vitepress/theme/components/Solutions.vue
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
reliability, performance, and security for mission-critical operations
</p>
<div class="feature-link">
<a href="https://laravel.com">Learn more →</a>
<a href="https://laravel.com" rel="nofollow external noopener noreferrer">Learn more →</a>
</div>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/master/advanced/dashboard.md
Original file line number Diff line number Diff line change
Expand Up @@ -198,4 +198,4 @@ public function getColumns(): int|string|array

## More Information

For more details, refer to the [FilamentPHP Dashboard Documentation](https://filamentphp.com/docs/3.x/panels/dashboard).
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>.
3 changes: 2 additions & 1 deletion src/master/advanced/progress-stepper.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,4 +141,5 @@ ProgressStepper::make('status')

## More Information

For more details, refer to the [FilamentPHP Toggle Buttons](https://filamentphp.com/docs/3.x/forms/fields/toggle-buttons).
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>.

6 changes: 3 additions & 3 deletions src/master/architecture/frontend.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ FilamentPHP integrates smoothly with Laravel and is optimized for rapid developm

## Livewire

[Livewire](https://livewire.laravel.com/) powers the dynamic interactions in Aureus ERP without requiring a complex JavaScript framework.
<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.

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

## Alpine.js

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

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

## Tailwind CSS

[Tailwind CSS](https://tailwindcss.com/) is the primary styling framework, offering a **utility-first** approach that makes designing responsive and modern UIs more efficient.
<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.

- **Highly Customizable**: The `tailwind.config.js` file allows for complete theme customization.
- **Performance Optimized**: Unused styles are purged in production for minimal CSS footprint.
Expand Down
2 changes: 1 addition & 1 deletion src/master/architecture/panels.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Admin Panel Provider

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.
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.

## Configuration Breakdown

Expand Down
2 changes: 1 addition & 1 deletion src/master/getting-started/clusters.md
Original file line number Diff line number Diff line change
Expand Up @@ -99,4 +99,4 @@ For better organization, store related resources and pages inside a directory ma

## More Information

For more details, refer to the [FilamentPHP Clusters Documentation](https://filamentphp.com/docs/3.x/panels/clusters).
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>.
3 changes: 2 additions & 1 deletion src/master/getting-started/migrations.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# **Migrations**

[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.
<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.

## **Key Features of Migrations**

Expand Down Expand Up @@ -104,6 +104,7 @@ class BlogServiceProvider extends PackageServiceProvider
## **Understanding Migration Registration**

1. **`hasMigrations([...])`**

- This method registers the migration file inside the plugin.
- The filename should match the migration file placed in `database/migrations/`.
- Example: `'2025_01_06_072032_create_posts_table'`
Expand Down
2 changes: 1 addition & 1 deletion src/master/getting-started/pages.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ The **Aureus ERP** Filament plugin provides robust project management capabiliti

## What are Filament Pages?

[Filament Pages](https://filamentphp.com/docs/3.x/panels/pages) are custom UI components that provide full-page interfaces within your admin panel.
<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.

### Key Page Features in FilamentPHP

Expand Down
2 changes: 1 addition & 1 deletion src/master/getting-started/resources/creating-record.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,4 +116,4 @@ class CreatePost extends CreateRecord
- **Post-Creation Processing**: Calls `updateStockLevels()` to recalculate stock availability after post creation.
- **Redirection & Notifications**: Redirects to the post view and notifies the user on successful creation.

For more details, check the **[Official Filament Documentation](https://filamentphp.com/docs/3.x/panels/resources/creating-records)**. 🚀
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>**. 🚀
2 changes: 1 addition & 1 deletion src/master/getting-started/resources/editing-record.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,4 +128,4 @@ class EditPost extends EditRecord
- **Actions**: Includes publish or unpublish, deletion, and Chatter integration for discussions.
- **Redirection & Notifications**: Redirects to the post view and notifies the user on successful update.

For more details, check the **[Official Filament Documentation](https://filamentphp.com/docs/3.x/panels/resources/editing-records)**. 🚀
For more details, check the **<a href="https://filamentphp.com/docs/3.x/panels/resources/editing-records" rel="nofollow external noopener noreferrer" target="_blank">Official Filament Documentation</a>**. 🚀
4 changes: 2 additions & 2 deletions src/master/getting-started/resources/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ To generate a Filament resource, use the following command:
php artisan make:filament-resource Post --view --model-namespace=Webkul\\Path\\Models
```

for more information visit [Filament Official Documentation](https://filamentphp.com/docs/3.x/panels/resources/getting-started#creating-a-resource)
For more information visit <a href="https://filamentphp.com/docs/3.x/panels/resources/getting-started#creating-a-resource" rel="nofollow external noopener noreferrer" target="_blank">Filament Official Documentation</a>.

Upon execution, the command prompts you to select a panel:

Expand Down Expand Up @@ -54,7 +54,7 @@ Once generated, the resource files will be located in:
- `EditPost.php`
- `ViewPost.php` (if enabled)

For more detailed documentation, refer to the official [Filament PHP Documentation](https://filamentphp.com/docs/3.x/panels/resources/getting-started).
For more detailed documentation, refer to the official <a href="https://filamentphp.com/docs/3.x/panels/resources/getting-started" rel="nofollow external noopener noreferrer" target="_blank">Filament PHP Documentation</a>.

## **Anatomy of a Filament Resource**

Expand Down
2 changes: 1 addition & 1 deletion src/master/getting-started/resources/listing-records.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,4 +81,4 @@ public function getPresetTableViews(): array
- Customize the **list page** to include actions like post creation.
- Implement **preset views** for predefined post filters.

For more details, check the **[Official Filament Documentation](https://filamentphp.com/docs/3.x/panels/resources/listing-records)**. 🚀
For more details, check the **<a href="https://filamentphp.com/docs/3.x/panels/resources/listing-records" rel="nofollow external noopener noreferrer" target="_blank">Official Filament Documentation</a>**. 🚀
2 changes: 1 addition & 1 deletion src/master/getting-started/resources/viewing-record.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,4 +130,4 @@ class ViewPost extends ViewRecord
- **Chatter Integration**: Enables discussion around the post.
- **Navigation Position**: Places the page navigation at the top.

For more details, check the **[Official Filament Documentation](https://filamentphp.com/docs/3.x/panels/resources/viewing-records)**. 🚀
For more details, check the **<a href="https://filamentphp.com/docs/3.x/panels/resources/viewing-records" rel="nofollow external noopener noreferrer" target="_blank">Official Filament Documentation</a>**. 🚀
2 changes: 1 addition & 1 deletion src/master/getting-started/settings.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# **Settings Migrations**

[Spatie’s Laravel Settings](https://filamentphp.com/plugins/filament-spatie-settings) package provides a structured way to manage system-wide settings using a database instead of configuration files. It allows defining, storing, and retrieving settings dynamically, ensuring consistency across different environments.
<a href="https://filamentphp.com/plugins/filament-spatie-settings" rel="nofollow external noopener noreferrer" target="_blank">Spatie’s Laravel Settings</a> package provides a structured way to manage system-wide settings using a database instead of configuration files. It allows defining, storing, and retrieving settings dynamically, ensuring consistency across different environments.

## **Key Features of Spatie Laravel Settings**

Expand Down
4 changes: 2 additions & 2 deletions src/master/installation/docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

## Introduction

[Docker](https://www.docker.com/) is an open platform for developing, shipping, and running applications. Docker enables you to separate your applications from your infrastructure so you can deliver software quickly. With Docker, you can manage your infrastructure in the same ways you manage your applications. Docker can also be used for defining and running multi-container Docker applications using the Docker Compose tool.
<a href="https://www.docker.com/" rel="nofollow external noopener noreferrer" target="_blank">Docker</a> is an open platform for developing, shipping, and running applications. Docker enables you to separate your applications from your infrastructure so you can deliver software quickly. With Docker, you can manage your infrastructure in the same ways you manage your applications. Docker can also be used for defining and running multi-container Docker applications using the Docker Compose tool.

With the help of Docker Compose, you can define containers to be built, their configuration, links, volumes, ports, etc., in a single file, and it gets launched by a single command. You can also add multiple servers and services just by adding them to the Docker Compose configuration file. This configuration file is in [YAML](https://en.wikipedia.org/wiki/YAML) format.
With the help of Docker Compose, you can define containers to be built, their configuration, links, volumes, ports, etc., in a single file, and it gets launched by a single command. You can also add multiple servers and services just by adding them to the Docker Compose configuration file. This configuration file is in <a href="https://en.wikipedia.org/wiki/YAML" rel="nofollow external noopener noreferrer" target="_blank">YAML</a> format.

### Application Data and Database Volume Persistence

Expand Down
2 changes: 1 addition & 1 deletion src/master/prologue/contribution-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ protected function registerService($service, $definition = null, $shared = false

## Running Pint Tests

We use [Laravel Pint](https://github.com/laravel/pint) for automated code formatting. Ensure all Pint tests pass before submitting a pull request.
We use <a href="https://github.com/laravel/pint" rel="nofollow external noopener noreferrer" target="_blank">Laravel Pint</a> for automated code formatting. Ensure all Pint tests pass before submitting a pull request.

To run Pint locally, execute:

Expand Down