incipient / structura
structura is a Laravel package for seamlessly managing and visualizing organizational hierarchies. It provides intuitive tools to define reporting relationships, handle employee data, and generate dynamic organizational charts. With support for AI-driven insights and modern charting libraries, struc
Requires
- php: ^7.3|^8.0
- illuminate/console: ^8.0|^9.0|^10.0
- illuminate/database: ^8.0|^9.0|^10.0
- illuminate/support: ^8.0|^9.0|^10.0
- illuminate/view: ^8.0|^9.0|^10.0
Requires (Dev)
- mockery/mockery: ^1.3
- phpunit/phpunit: ^9.5
Suggests
- barryvdh/laravel-dompdf: For generating PDFs of the organizational chart.
This package is auto-updated.
Last update: 2025-03-26 12:35:13 UTC
README
Structura
Structura is a Laravel package for seamlessly managing and visualizing organizational hierarchies. It provides intuitive tools to define reporting relationships, handle employee data, and generate dynamic organizational charts.
Installation
Follow these steps to install and set up Structura in your Laravel project:
Step 1: Install via Composer
Run the following command to install the package:
composer require incipient/structura
Step 2: Publish Resources
Publish the package's resources using the following command:
php artisan vendor:publish --provider="incipient\structura\Providers\OrganizationalChartServiceProvider"
This will publish:
- Configuration file:
config/organizational_chart.php
- Migrations:
database/migrations/
- Views:
resources/views/vendor/organizationalchart/
- Controllers:
app/Http/Controllers/Vendor/Structura/
Step 3: Run Migrations
Apply the published migrations to your database:
php artisan migrate
Step 4: Customize Configuration (Optional)
Modify the configuration file config/organizational_chart.php
to suit your needs.