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