Not generating slug #297
-
|
Hi, I'm not able to generate slug when seeding database. I'm making e-commerce website course, learning Laravel as a beginner. But no error about slug is provided. What should I do? (Slug is not inserted into database when 'slug' collumn is not nullable. When I made 'slug' collumn nullable, it also remains empty. Laravel-sluggable installed.
Product.php ProductFactory.php ProductSeeder.php laravel.log (Nothing logged from Product.php) 2025_10_20_194742_create_products_table.php |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
|
SOLVED - Problem was WithoutModelEvents trait in DatabaseSeeder class: "This trait prevents Eloquent events from firing, preventing HasSlug trait's to execute the slug generation." |
Beta Was this translation helpful? Give feedback.
SOLVED - Problem was WithoutModelEvents trait in DatabaseSeeder class: "This trait prevents Eloquent events from firing, preventing HasSlug trait's to execute the slug generation."