LMongo\Eloquent\Model::trashed PHP Method

trashed() public method

Determine if the model instance has been soft-deleted.
public trashed ( ) : boolean
return boolean
    public function trashed()
    {
        return $this->softDelete and !is_null($this->{static::DELETED_AT});
    }
Model