ahmetsabri/abdulhamid-laravel-slug

simple laravel slugging package

v1.1 2023-07-08 12:52 UTC

This package is auto-updated.

Last update: 2025-03-08 16:28:41 UTC


README

A laravel package to slugg columns via your models .

installation :

composer require ahmetsabri/abdulhamid-laravel-slug

Usage :

  • use Sluggable trait in your model
  • Define $sluggable property in your model to select which columns to be slug

Example :

use Ahmetsabri\Abdulhamid\Searchable;

class Post extends Model {

  use Sluggable ;
  protected $sluggable = 'title';
  

That's it !