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