diff --git a/.vitepress/config.ts b/.vitepress/config.ts index e2e090c..d9e4b5f 100644 --- a/.vitepress/config.ts +++ b/.vitepress/config.ts @@ -88,8 +88,8 @@ export default defineConfig({ footer: { message: - 'Released under the MIT License.', - copyright: `Copyright Β© ${new Date().getFullYear()} Webkul` + 'Released under the MIT License.', + copyright: `Copyright Β© ${new Date().getFullYear()} Aureus ERP` }, lastUpdated: { diff --git a/.vitepress/theme/components/Solutions.vue b/.vitepress/theme/components/Solutions.vue index f4c6080..18135df 100644 --- a/.vitepress/theme/components/Solutions.vue +++ b/.vitepress/theme/components/Solutions.vue @@ -71,7 +71,7 @@ reliability, performance, and security for mission-critical operations

diff --git a/src/master/advanced/dashboard.md b/src/master/advanced/dashboard.md index 8eea9ef..dec3be3 100644 --- a/src/master/advanced/dashboard.md +++ b/src/master/advanced/dashboard.md @@ -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 FilamentPHP Dashboard Documentation. diff --git a/src/master/advanced/progress-stepper.md b/src/master/advanced/progress-stepper.md index b68684b..fdb98a3 100644 --- a/src/master/advanced/progress-stepper.md +++ b/src/master/advanced/progress-stepper.md @@ -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 FilamentPHP Toggle Buttons. + diff --git a/src/master/architecture/frontend.md b/src/master/architecture/frontend.md index aaa8999..41953ce 100644 --- a/src/master/architecture/frontend.md +++ b/src/master/architecture/frontend.md @@ -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. +Livewire 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. @@ -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. +Alpine.js 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. @@ -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. +Tailwind CSS 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. diff --git a/src/master/architecture/panels.md b/src/master/architecture/panels.md index f9833bc..8461155 100644 --- a/src/master/architecture/panels.md +++ b/src/master/architecture/panels.md @@ -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 Panel Provider configures the administrative backend interface using FilamentPHP. It establishes authentication mechanisms, visual components, middleware configurations, and plugin integrations for administrative users. ## Configuration Breakdown diff --git a/src/master/getting-started/clusters.md b/src/master/getting-started/clusters.md index dce38a7..43cc6b1 100644 --- a/src/master/getting-started/clusters.md +++ b/src/master/getting-started/clusters.md @@ -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 FilamentPHP Clusters Documentation. diff --git a/src/master/getting-started/migrations.md b/src/master/getting-started/migrations.md index 15bc517..0e9ce7b 100644 --- a/src/master/getting-started/migrations.md +++ b/src/master/getting-started/migrations.md @@ -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. +Migrations 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** @@ -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'` diff --git a/src/master/getting-started/pages.md b/src/master/getting-started/pages.md index e1c72e3..1910d94 100644 --- a/src/master/getting-started/pages.md +++ b/src/master/getting-started/pages.md @@ -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. +Filament Pages are custom UI components that provide full-page interfaces within your admin panel. ### Key Page Features in FilamentPHP diff --git a/src/master/getting-started/resources/creating-record.md b/src/master/getting-started/resources/creating-record.md index 325d51b..127f0e4 100644 --- a/src/master/getting-started/resources/creating-record.md +++ b/src/master/getting-started/resources/creating-record.md @@ -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 **Official Filament Documentation**. πŸš€ diff --git a/src/master/getting-started/resources/editing-record.md b/src/master/getting-started/resources/editing-record.md index 52683ef..32f6bcf 100644 --- a/src/master/getting-started/resources/editing-record.md +++ b/src/master/getting-started/resources/editing-record.md @@ -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 **Official Filament Documentation**. πŸš€ diff --git a/src/master/getting-started/resources/getting-started.md b/src/master/getting-started/resources/getting-started.md index b7e1e91..09d19c3 100644 --- a/src/master/getting-started/resources/getting-started.md +++ b/src/master/getting-started/resources/getting-started.md @@ -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 Filament Official Documentation. Upon execution, the command prompts you to select a panel: @@ -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 Filament PHP Documentation. ## **Anatomy of a Filament Resource** diff --git a/src/master/getting-started/resources/listing-records.md b/src/master/getting-started/resources/listing-records.md index 4d613e0..85a0452 100644 --- a/src/master/getting-started/resources/listing-records.md +++ b/src/master/getting-started/resources/listing-records.md @@ -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 **Official Filament Documentation**. πŸš€ diff --git a/src/master/getting-started/resources/viewing-record.md b/src/master/getting-started/resources/viewing-record.md index 021ef7d..da825ad 100644 --- a/src/master/getting-started/resources/viewing-record.md +++ b/src/master/getting-started/resources/viewing-record.md @@ -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 **Official Filament Documentation**. πŸš€ diff --git a/src/master/getting-started/settings.md b/src/master/getting-started/settings.md index 68e8d96..1a2f23b 100644 --- a/src/master/getting-started/settings.md +++ b/src/master/getting-started/settings.md @@ -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. +Spatie’s Laravel 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. ## **Key Features of Spatie Laravel Settings** diff --git a/src/master/installation/docker.md b/src/master/installation/docker.md index aa533a4..fbce724 100644 --- a/src/master/installation/docker.md +++ b/src/master/installation/docker.md @@ -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. +Docker 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 YAML format. ### Application Data and Database Volume Persistence diff --git a/src/master/prologue/contribution-guide.md b/src/master/prologue/contribution-guide.md index 513c1f1..53b51d3 100644 --- a/src/master/prologue/contribution-guide.md +++ b/src/master/prologue/contribution-guide.md @@ -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 Laravel Pint for automated code formatting. Ensure all Pint tests pass before submitting a pull request. To run Pint locally, execute: