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