Illuminate\Database\Eloquent\Model::deleted PHP Method

deleted() public static method

Register a deleted model event with the dispatcher.
public static deleted ( Closure | string $callback, integer $priority ) : void
$callback Closure | string
$priority integer
return void
    public static function deleted($callback, $priority = 0)
    {
        static::registerModelEvent('deleted', $callback, $priority);
    }
Model