⚠️ [ABANDONED] Rinvex Attributable is a robust, intelligent, and integrated Entity-Attribute-Value model (EAV) implementation for Laravel Eloquent, with powerful underlying for managing entity attributes implicitly as relations with ease. It utilizes the power of Laravel Eloquent, with smooth and seamless integration.
MIT License
434
stars
104
forks
source link
Slug should be snake_case even it's manually provided #51
As of now, the slug is automatically generated in an _snakecase style only when it gets generated using the Sluggable package (no slug provided when creating the attribute).
When we create an attribute providing a slug, it won't get formatted as _snakecase.
As of now, the
slug
is automatically generated in an _snakecase style only when it gets generated using the Sluggable package (no slug provided when creating the attribute).When we create an attribute providing a
slug
, it won't get formatted as _snakecase.Reproduce
This will produce a
foo-bar
slug rather thanfoo_bar
.