Code Monkey home page Code Monkey logo

Comments (3)

driesvints avatar driesvints commented on June 3, 2024

Hi there,

Thanks for reporting but it looks like this is a question which can be asked on a support channel. Please only use this issue tracker for reporting bugs with the library itself. If you have a question on how to use functionality provided by this repo you can try one of the following channels:

However, this issue will not be locked and everyone is still free to discuss solutions to your problem!

Thanks.

from cashier-paddle.

yoeriboven avatar yoeriboven commented on June 3, 2024

@driesvints Hi Dries.

I'm starting to think this is actually a package issue.

The amount of duplicate queries drops from 8 to 0 when making the following change. (line)

$this->subscriptions()->where('name', $name)->first();
$this->subscriptions->where('name', $name)->first();

This is also how it is done in the Stripe version of Cashier. (line)

/**
 * Get a subscription instance by name.
 *
 * @param  string  $name
 * @return \Laravel\Cashier\Subscription|null
 */
public function subscription($name = 'default')
{
    return $this->subscriptions->sortByDesc(function (Subscription $subscription) {
        return $subscription->created_at->getTimestamp();
    })->first(function (Subscription $subscription) use ($name) {
        return $subscription->name === $name;
    });
}

By using the function you always access the relationship and make a new query instead of accessing the previously loaded results.

Could you confirm this isn't a bug?

I took the liberty to create a PR so this can quickly be resolved in case you agree with me.

from cashier-paddle.

driesvints avatar driesvints commented on June 3, 2024

Hey Yoeri. Your change would load all subscriptions into memory and do the where clause on the collection rather than the query builder. This would raise its own sets of problems (see Taylor's response on your PR).

I think the code in Cashier Stripe is for legacy purposes but not entirely sure. I'm attempting a PR to simplify it in Cashier Stripe: laravel/cashier-stripe#1002

from cashier-paddle.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.