1 <?php namespace BookStack\Interfaces;
3 use Illuminate\Database\Eloquent\Builder;
8 * Assigned to models that can have slugs.
9 * Must have the below properties.
12 * @property string $name
13 * @method Builder newQuery
19 * Regenerate the slug for this model.
21 public function refreshSlug(): string;