3 namespace BookStack\Interfaces;
5 use Illuminate\Database\Eloquent\Builder;
10 * Assigned to models that can have slugs.
11 * Must have the below properties.
14 * @property string $name
16 * @method Builder newQuery
21 * Regenerate the slug for this model.
23 public function refreshSlug(): string;