├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── composer.json └── src ├── Attributes └── Slug.php ├── Concerns └── HasSlug.php ├── LaravelSlugServiceProvider.php └── Support.php /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryangjchandler/laravel-slug/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryangjchandler/laravel-slug/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryangjchandler/laravel-slug/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryangjchandler/laravel-slug/HEAD/composer.json -------------------------------------------------------------------------------- /src/Attributes/Slug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryangjchandler/laravel-slug/HEAD/src/Attributes/Slug.php -------------------------------------------------------------------------------- /src/Concerns/HasSlug.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryangjchandler/laravel-slug/HEAD/src/Concerns/HasSlug.php -------------------------------------------------------------------------------- /src/LaravelSlugServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryangjchandler/laravel-slug/HEAD/src/LaravelSlugServiceProvider.php -------------------------------------------------------------------------------- /src/Support.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryangjchandler/laravel-slug/HEAD/src/Support.php --------------------------------------------------------------------------------