### Installing Krayin ERP with Artisan (Bash) Source: https://github.com/krayin/erp/blob/main/README.md Executes the main installation command for Krayin ERP. This command handles database migrations, seeders, role/permission generation via Filament Shield, and prompts for initial admin credentials. ```bash php artisan erp:install ``` -------------------------------- ### Install Projects Plugin with Composer Source: https://github.com/krayin/erp/blob/main/plugins/webkul/projects/README.md Installs the Krayin Projects plugin using Composer, downloading the necessary package into the project's vendor directory. This is the first step in the plugin installation process. ```bash composer require krayin/projects ``` -------------------------------- ### Run Projects Plugin Installation Command Source: https://github.com/krayin/erp/blob/main/plugins/webkul/projects/README.md Executes the artisan command provided by the Krayin Projects plugin to run database migrations and seed initial data required for the plugin to function correctly after installation via Composer. ```bash php artisan projects:install ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.