xguard / xguard-coordinator
A plugin to manage supervisors on the XGuard ERP
Package info
github.com/snapx-team/xguard-coordinator
Language:CSS
pkg:composer/xguard/xguard-coordinator
This package is auto-updated.
Last update: 2026-06-18 08:40:58 UTC
README
Plugin to manage supervisors on XGuard ERP
Installation with composer
Use the following commands to install
composer require xguard/xguard-coordinator
php artisan migrate
php artisan vendor:publish --provider="Xguard\Coordinator\CoordinatorServiceProvider" --force
Use the following command to create an admin. It will prompt you for an existing email from users table.
php artisan coordinator:create-admin
You can now go to the /coordinator path to use the package. You must first login to access this url.
Development
Follow these steps to make modifications to the package
1: Firstly, clone the xguard-coordinator repo inside your package folder at root level. Create a "package" folder if you don't have one.
2: Then, add line of code in the psr-4 of your root composer.json
"psr-4": {
//...
"Xguard\\Coordinator\\": "package/xguard-coordinator/src/"
},
3: Add the coordinator plugin service provider to the config/app.php
return [ //... "providers" => [ //... Xguard\Coordinator\CoordinatorServiceProvider::class, ] ];
4: run this command
composer dump-autoload
5: Navigate to the xguard-coordinator package folder in your command line and perform the following commands:
composer install npm install npm run dev
6: Return to the root folder in the command line and publish the package with the following command:
php artisan vendor:publish --provider="Xguard\Coordinator\CoordinatorServiceProvider" --force
7: To run package migrations
php artisan migrate --path=package/xguard-coordinator/src/database/migrations
8: To run seeder for testing
php artisan db:seed --class="Xguard\Coordinator\database\seeds\EmployeeSeeder"
9:
php artisan coordinator-app:create-admin