mul14
9/12/2014 - 1:32 PM

Laravel - Automatic create slug when saving

Laravel - Automatic create slug when saving

<?php namespace App;

use Illuminate\Support\Str;
use Illuminate\Database\Eloquent\Model;

class Article extends Model {
    
    public function setSlugAttribute($value)
    {
        $this->attributes['slug'] = Str::slug($value);
    }
    
}