Lavalite package that provides doc management facility for the cms. ## Installation Begin by installing this package through Composer. Edit your project's `composer.json` file to require `hrm/doc`. "hrm/doc": "dev-master" Next, update Composer from the Terminal: composer update Once this operation completes execute below cammnds in command line to finalize installation. Hrm\Doc\Providers\DocServiceProvider::class, And also add it to alias 'Doc' => Hrm\Doc\Facades\Doc::class, ## Publishing files and migraiting database. **Migration and seeds** php artisan migrate php artisan db:seed --class=Hrm\\DocTableSeeder **Publishing configuration** php artisan vendor:publish --provider="Hrm\Doc\Providers\DocServiceProvider" --tag="config" **Publishing language** php artisan vendor:publish --provider="Hrm\Doc\Providers\DocServiceProvider" --tag="lang" **Publishing views** php artisan vendor:publish --provider="Hrm\Doc\Providers\DocServiceProvider" --tag="view" ## Usage