kebalicious/laravel-atlas

Laravel Atlas, pretty routes viewer for Laravel 5+

1.0.1 2024-01-23 08:11 UTC

This package is auto-updated.

Last update: 2024-09-24 15:01:59 UTC


README

logo Laravel Atlas

Laravel Atlas

Installation

Install package from Packagist via:

composer require kebalicious/laravel-atlas

If you are using Laravel Package Auto-Discovery, ignore next step.

Otherwise,

Open config/app.php. Under 'providers' => [ ] array, add:

LaravelAtlas\ServiceProvider::class,

Next, publish the config file:

php artisan vendor:publish --provider="LaravelAtlas\ServiceProvider"

To access your routes: your-domain/routes

If /routes not working, ensure that you have included the provider within the same area as all your package providers (before all your app's providers) to ensure it takes priority.

By default Laravel Atlas only enables itself when APP_DEBUG env is true. You can configure this on the published config as above, or add any custom middlewares.

Notes

This package is originally forked from GaryGreen's Pretty Routes, with some enhancement on UI and features.