PHP Package: cviebrock/eloquent-sluggable

This PHP library provides SEO-optimized slug functionality for Eloquent models in Laravel applications, enhancing search engine visibility and user experience.

Current Version: 12.0.0
Last Updated: Date not available
PHP Requirement: >=7.1
Dependencies: illuminate/database, illuminate/support
⚠️ To ensure full functionality, the above dependencies might be required.

Package Description

Eloquent-Sluggable is a powerful PHP library that seamlessly integrates with Laravel's Eloquent ORM, allowing developers to generate and manage SEO-friendly slugs for their models. With features like automatic slug creation, customizable options, and support for multilingual applications, this library simplifies the process of handling slugs in web projects, improving site indexing and user engagement. Whether you're building a blog, e-commerce platform, or any other web application, Eloquent-Sluggable is an essential tool for optimizing your content for search engines and enhancing overall SEO performance.

🔗 View on GitHub

Download Latest Version: 12.0.0

Download Download v12.0.0

Code Integration Example

Make sure to include the correct namespace and class paths for proper usage.

<?php

// Example from PHPlibraries.com
require_once 'libs/cviebrock/eloquent-sluggable/12.0.0/autoload.php';

use Cviebrock\EloquentSluggable\SluggableTrait;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Support\Str;


$obj = new Cviebrock\EloquentSluggable\SluggableTrait();
echo "✅ Example created successfully.";

?>

We aim to make using PHP packages easier without Composer. If something doesn't work, let us know — we'll fix it promptly.