Get expert guidance in a few days with a Laravel code review

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
Typesense Search logo

Typesense Search

Typesense is an open source, blazing-fast search engine, optimized for helping you build delightful search experiences for your sites and apps. Natively integrated with Laravel Scout.

Typesense Search
Statamic logo

Statamic

The drop-in ready Laravel CMS you’re been waiting for. Go full-stack or headless, flat file or database – it’s up to you.

Statamic
Tighten logo

Tighten

We help companies turn great ideas into amazing apps, products, and services.

Tighten
Securing Laravel logo

Securing Laravel

The essential security resource for Laravel devs, covering everything you need to keep your apps secure. Sign up to receive weekly security tips and monthly in depth articles, diving deep into security concepts you need to know!

Securing Laravel
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
Tinkerwell logo

Tinkerwell

The must-have code runner for Laravel developers. Tinker with AI, autocompletion and instant feedback on local and production environments.

Tinkerwell