Cviebrock\EloquentSluggable\SluggableObserver::fireSluggedEvent PHP Method

fireSluggedEvent() protected method

Fire the namespaced post-validation event.
protected fireSluggedEvent ( Model $model, string $status ) : void
$model Illuminate\Database\Eloquent\Model
$status string
return void
    protected function fireSluggedEvent(Model $model, $status)
    {
        $this->events->fire('eloquent.slugged: ' . get_class($model), [$model, $status]);
    }