This is a Lavalite package that provides incidentreport management facility. ## Installation Begin by installing this package through Composer. Edit your project's `composer.json` file to require `assetdocs/incidentreport`. "assetdocs/incidentreport": "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\Incidentreport\Providers\IncidentreportServiceProvider::class, ``` And also add it to alias ```php 'Incidentreport' => Assetdocs\Incidentreport\Facades\Incidentreport::class, ``` Use the below commands for publishing Migration and seeds php artisan vendor:publish --provider="Assetdocs\Incidentreport\Providers\IncidentreportServiceProvider" --tag="migrations" php artisan vendor:publish --provider="Assetdocs\Incidentreport\Providers\IncidentreportServiceProvider" --tag="seeds" Configuration php artisan vendor:publish --provider="Assetdocs\Incidentreport\Providers\IncidentreportServiceProvider" --tag="config" Language files php artisan vendor:publish --provider="Assetdocs\Incidentreport\Providers\IncidentreportServiceProvider" --tag="lang" View files php artisan vendor:publish --provider="Assetdocs\Incidentreport\Providers\IncidentreportServiceProvider" --tag="views" Public folders php artisan vendor:publish --provider="Assetdocs\Incidentreport\Providers\IncidentreportServiceProvider" --tag="public" ## Usage