Editing: PostWithOnUpdate.php
<?php namespace Cviebrock\EloquentSluggable\Tests\Models; /** * Class PostWithOnUpdate * * A test model that uses the onUpdate functionality. * * @package Cviebrock\EloquentSluggable\Tests\Models */ class PostWithOnUpdate extends Post { /** * Return the sluggable configuration array for this model. * * @return array */ public function sluggable(): array { return [ 'slug' => [ 'source' => 'title', 'onUpdate' => true ] ]; } }
Save
Back