├── .editorconfig ├── .gitignore ├── LICENSE.md ├── README.md ├── composer.json ├── config └── sluggable.php └── src ├── Sluggable.php └── SluggableServiceProvider.php /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinbean/laravel-sluggable-trait/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /vendor 2 | composer.lock 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinbean/laravel-sluggable-trait/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinbean/laravel-sluggable-trait/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinbean/laravel-sluggable-trait/HEAD/composer.json -------------------------------------------------------------------------------- /config/sluggable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinbean/laravel-sluggable-trait/HEAD/config/sluggable.php -------------------------------------------------------------------------------- /src/Sluggable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinbean/laravel-sluggable-trait/HEAD/src/Sluggable.php -------------------------------------------------------------------------------- /src/SluggableServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martinbean/laravel-sluggable-trait/HEAD/src/SluggableServiceProvider.php --------------------------------------------------------------------------------