Cviebrock\EloquentSluggable\Tests\Models\PostWithMaxLength::sluggable PHP 메소드

sluggable() 공개 메소드

Return the sluggable configuration array for this model.
public sluggable ( ) : array
리턴 array
    public function sluggable()
    {
        return ['slug' => ['source' => 'title', 'maxLength' => 10]];
    }
PostWithMaxLength