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

withTrashed() public static méthode

Get a new query builder that includes soft deletes.
public static withTrashed ( ) : Builder
Résultat Illuminate\Database\Eloquent\Builder
    public static function withTrashed()
    {
        return with(new static())->newQueryWithDeleted();
    }
Model