diff --git a/readme.md b/readme.md index 9742582..6be1cfb 100644 --- a/readme.md +++ b/readme.md @@ -3,12 +3,12 @@ Pretty Routes for Laravel Visualise your routes in pretty format. -![Pretty Routes](https://raw.githubusercontent.com/garygreen/pretty-routes/master/screenshot.png) +![Pretty Routes](rootz.png) # Installation ```bash -composer require garygreen/pretty-routes +composer require humaneguy/rootz ``` If your using autodiscovery in Laravel, it should just work. @@ -16,13 +16,13 @@ If your using autodiscovery in Laravel, it should just work. Otherwise - add to your `config/app.php` providers array to where all your package providers are (before your app's providers): ```php -PrettyRoutes\ServiceProvider::class, +Rootz\ServiceProvider::class, ``` By default the package exposes a `/routes` url. If you wish to configure this, publish the config. ```bash -php artisan vendor:publish --provider="PrettyRoutes\ServiceProvider" +php artisan vendor:publish --provider="Rootz\ServiceProvider" ``` If accessing `/routes` isn't working, ensure that you've included the provider within the same area as all your package providers (before all your app's providers) to ensure it takes priority. diff --git a/rootz.png b/rootz.png new file mode 100644 index 0000000..253e091 Binary files /dev/null and b/rootz.png differ