alexpechkarev / google-maps

Collection of Google Maps API Web Services for Laravel
https://alexpechkarev.github.io/google-maps/
MIT License
523 stars 115 forks source link

unable to locate publishable resources #75

Closed michaelnguyen2021 closed 4 years ago

michaelnguyen2021 commented 4 years ago

Installed with composer require "alexpechkarev/google-maps":"6.0"

then run php artisan vendor:publish --tag=googlemaps

and got Unable to locate publishable resources.

running laravel v6.13.1

nvm, I have to add to config/app.php first

'providers' => [
    ...
    GoogleMaps\ServiceProvider\GoogleMapsServiceProvider::class,
]

'aliases' => [
    ...
    'GoogleMaps' => GoogleMaps\Facade\GoogleMapsFacade::class,
]