Editing: PostWithCustomMethod.php
<?php namespace Cviebrock\EloquentSluggable\Tests\Models; use Illuminate\Support\Str; /** * Class PostWithCustomMethod * * @package Cviebrock\EloquentSluggable\Tests\Models */ class PostWithCustomMethod extends Post { /** * Return the sluggable configuration array for this model. * * @return array */ public function sluggable(): array { return [ 'slug' => [ 'source' => 'title', 'method' => function ($string, $separator) { return strrev(Str::slug($string, $separator)); } ] ]; } }
Save
Back