Eloquent Sluggable

cviebrock/eloquent-sluggable image

Eloquent Sluggable stats

Downloads
8.2M
Stars
3,738
Open Issues
3
Forks
448

View on GitHub →

Easy creation of slugs for your Eloquent models in Laravel

Eloquent-Sluggable Package Summary

Eloquent-Sluggable is a Laravel package designed to easily handle the creation and management of slugs for Eloquent models. It automates slug generation, ensuring they are SEO-friendly and unique, with minimal setup required.

Key Features

  • Automatic Slug Generation: Automatically generates slugs when models are saved.
  • Customizable Slugging Strategy: Configure slug generation strategies per model.
  • Unique Slugs: Ensures slugs are unique and provides options to customize the uniqueness constraint.
  • Support for Multiple Slugs: Ability to handle multiple slugs per model based on different attributes.
  • Event Hooks: Offers slugging and slugged model events for intercepting slug generation lifecycle.
  • Route Model Binding: Supports explicit route model binding using slugs.

Installation

Installation varies with Laravel versions, so ensure you install the correct package version matching your Laravel installation:

composer require cviebrock/eloquent-sluggable

To customize configurations, publish the config file:

php artisan vendor:publish --provider="Cviebrock\EloquentSluggable\ServiceProvider"

Configuration and Usage

Implement the Sluggable trait in your model and define the sluggable method to specify the source field and other options:

use Cviebrock\EloquentSluggable\Sluggable;
 
class Post extends Model
{
use Sluggable;
 
public function sluggable(): array
{
return [
'slug' => [
'source' => 'title'
]
];
}
}

The slug is then automatically generated and saved when the model is created or updated. Access it simply via $model->slug.

Advanced Features

  • Custom Slug Generation: Override default settings per model for source fields and slug generation methods.
  • Handling Updates: Optionally regenerate slugs on model updates.
  • Event System: Utilize slugging and slugged events to add custom logic during the slug lifecycle.
  • Scopes and Helpers: Use scope helpers for slug-based queries and leverage custom query scopes to refine slug generation rules.

For developers looking to streamline their application URLs and improve SEO, Eloquent-Sluggable provides a robust, flexible solution for managing slugs in Laravel applications. The package simplifies the complexity behind slug generation and ensures that slugs are both readable and unique, enhancing the overall user experience.

Cube

Laravel Newsletter

Join 40k+ other developers and never miss out on new tips, tutorials, and more.


Cviebrock Eloquent Sluggable Related Articles

Export from Sequel Pro to a Laravel Migration image

Export from Sequel Pro to a Laravel Migration

Read article
Shift logo

Shift

Running an old Laravel version? Instant, automated Laravel upgrades and code modernization to keep your applications fresh.

Shift
LoadForge logo

LoadForge

Scalable load testing for web apps & APIs. Simulate real-world traffic and identify breaking points and performance limits with powerful, scalable load tests designed for Laravel.

LoadForge
No Compromises logo

No Compromises

Joel and Aaron, the two seasoned devs from the No Compromises podcast, are now available to hire for your Laravel project. ⬧ Flat rate of $9500/mo. ⬧ No lengthy sales process. ⬧ No contracts. ⬧ 100% money back guarantee.

No Compromises
Kirschbaum logo

Kirschbaum

Providing innovation and stability to ensure your web application succeeds.

Kirschbaum
Blastup logo

Blastup

Blastup provides social media enhancement services including buying Instagram likes, followers, and views, with features like instant delivery and a variety of packages to suit different needs.

Blastup
PhpStorm logo

PhpStorm

The go-to PHP IDE with extensive out-of-the-box support for Laravel and its ecosystem.

PhpStorm