We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
2 parents9310edd +26d22c2 commit8b8caedCopy full SHA for 8b8caed
README.md
@@ -51,7 +51,7 @@ If you are upgrading from a pre-1.x version of this package, please keep the
51
2. Update the `use` statements to the following:
52
53
```php
54
-useuseGeocoder\Laravel\Facades\Geocoder;
+use Geocoder\Laravel\Facades\Geocoder;
55
```
56
57
6. Update your query statements to use `->get()` (to retrieve a collection of
@@ -109,7 +109,7 @@ return [
109
If you would like to make changes to the default configuration, publish and
110
edit the configuration file:
111
```sh
112
-php artisan vendor:publish --provider="Geocoder\Laravel\GeocoderServiceProvider" --tag="config"
+php artisan vendor:publish --provider="Geocoder\Laravel\Providers\GeocoderService" --tag="config"
113
114
115
##Usage