LMongo\Eloquent\Model::restore PHP 메소드

restore() 공개 메소드

Restore a soft-deleted model instance.
public restore ( ) : boolean | null
리턴 boolean | null
    public function restore()
    {
        if ($this->softDelete) {
            $this->{static::DELETED_AT} = null;
            return $this->save();
        }
    }
Model