├── .editorconfig ├── LICENSE ├── README.md ├── composer.json ├── config └── pretty-routes.php ├── resources ├── lang │ ├── en │ │ └── info.php │ ├── es │ │ └── info.php │ ├── fr │ │ └── info.php │ ├── ru │ │ └── info.php │ ├── tr │ │ └── info.php │ └── zh_CN │ │ └── info.php └── views │ ├── components │ ├── dialog.blade.php │ └── snackbar.blade.php │ ├── favicon.blade.php │ ├── layout.blade.php │ ├── scripts.blade.php │ ├── styles.blade.php │ └── vue.blade.php ├── routes ├── laravel.php └── lumen.php └── src ├── Facades ├── Cache.php └── Trans.php ├── Http └── PrettyRoutesController.php ├── ServiceProvider.php └── Support ├── Cache.php ├── Config.php └── Trans.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDragonCode/pretty-routes/HEAD/.editorconfig -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDragonCode/pretty-routes/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDragonCode/pretty-routes/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDragonCode/pretty-routes/HEAD/composer.json -------------------------------------------------------------------------------- /config/pretty-routes.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDragonCode/pretty-routes/HEAD/config/pretty-routes.php -------------------------------------------------------------------------------- /resources/lang/en/info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDragonCode/pretty-routes/HEAD/resources/lang/en/info.php -------------------------------------------------------------------------------- /resources/lang/es/info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDragonCode/pretty-routes/HEAD/resources/lang/es/info.php -------------------------------------------------------------------------------- /resources/lang/fr/info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDragonCode/pretty-routes/HEAD/resources/lang/fr/info.php -------------------------------------------------------------------------------- /resources/lang/ru/info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDragonCode/pretty-routes/HEAD/resources/lang/ru/info.php -------------------------------------------------------------------------------- /resources/lang/tr/info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDragonCode/pretty-routes/HEAD/resources/lang/tr/info.php -------------------------------------------------------------------------------- /resources/lang/zh_CN/info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDragonCode/pretty-routes/HEAD/resources/lang/zh_CN/info.php -------------------------------------------------------------------------------- /resources/views/components/dialog.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDragonCode/pretty-routes/HEAD/resources/views/components/dialog.blade.php -------------------------------------------------------------------------------- /resources/views/components/snackbar.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDragonCode/pretty-routes/HEAD/resources/views/components/snackbar.blade.php -------------------------------------------------------------------------------- /resources/views/favicon.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDragonCode/pretty-routes/HEAD/resources/views/favicon.blade.php -------------------------------------------------------------------------------- /resources/views/layout.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDragonCode/pretty-routes/HEAD/resources/views/layout.blade.php -------------------------------------------------------------------------------- /resources/views/scripts.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDragonCode/pretty-routes/HEAD/resources/views/scripts.blade.php -------------------------------------------------------------------------------- /resources/views/styles.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDragonCode/pretty-routes/HEAD/resources/views/styles.blade.php -------------------------------------------------------------------------------- /resources/views/vue.blade.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDragonCode/pretty-routes/HEAD/resources/views/vue.blade.php -------------------------------------------------------------------------------- /routes/laravel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDragonCode/pretty-routes/HEAD/routes/laravel.php -------------------------------------------------------------------------------- /routes/lumen.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDragonCode/pretty-routes/HEAD/routes/lumen.php -------------------------------------------------------------------------------- /src/Facades/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDragonCode/pretty-routes/HEAD/src/Facades/Cache.php -------------------------------------------------------------------------------- /src/Facades/Trans.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDragonCode/pretty-routes/HEAD/src/Facades/Trans.php -------------------------------------------------------------------------------- /src/Http/PrettyRoutesController.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDragonCode/pretty-routes/HEAD/src/Http/PrettyRoutesController.php -------------------------------------------------------------------------------- /src/ServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDragonCode/pretty-routes/HEAD/src/ServiceProvider.php -------------------------------------------------------------------------------- /src/Support/Cache.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDragonCode/pretty-routes/HEAD/src/Support/Cache.php -------------------------------------------------------------------------------- /src/Support/Config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDragonCode/pretty-routes/HEAD/src/Support/Config.php -------------------------------------------------------------------------------- /src/Support/Trans.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheDragonCode/pretty-routes/HEAD/src/Support/Trans.php --------------------------------------------------------------------------------