LMongo\Eloquent\Model::touch PHP Méthode

touch() public méthode

Update the model's update timestamp.
public touch ( ) : boolean
Résultat boolean
    public function touch()
    {
        $this->updateTimestamps();
        return $this->save();
    }
Model