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