This is a Lavalite package that provides incidentpkgs management facility. ## Installation Begin by installing this package through Composer. Edit your project's `composer.json` file to require `assetdocs/incidentpkgs`. "assetdocs/incidentpkgs": "dev-master" Next, update Composer from the Terminal: composer update Once this operation completes execute below cammnds in command line to finalize installation. ```php Assetdocs\Incidentpkgs\Providers\IncidentpkgsServiceProvider::class, ``` And also add it to alias ```php 'Incidentpkgs' => Assetdocs\Incidentpkgs\Facades\Incidentpkgs::class, ``` Use the below commands for publishing Migration and seeds php artisan vendor:publish --provider="Assetdocs\Incidentpkgs\Providers\IncidentpkgsServiceProvider" --tag="migrations" php artisan vendor:publish --provider="Assetdocs\Incidentpkgs\Providers\IncidentpkgsServiceProvider" --tag="seeds" Configuration php artisan vendor:publish --provider="Assetdocs\Incidentpkgs\Providers\IncidentpkgsServiceProvider" --tag="config" Language files php artisan vendor:publish --provider="Assetdocs\Incidentpkgs\Providers\IncidentpkgsServiceProvider" --tag="lang" View files php artisan vendor:publish --provider="Assetdocs\Incidentpkgs\Providers\IncidentpkgsServiceProvider" --tag="views" Public folders php artisan vendor:publish --provider="Assetdocs\Incidentpkgs\Providers\IncidentpkgsServiceProvider" --tag="public" ## Usage