Coder Social home page Coder Social logo

Comments (2)

bpuig avatar bpuig commented on June 27, 2024

I'm unable to make the scope, because it would need very a specific mysql raw select with mysql date calculation methods. Since laravel installation accepts mysql, postgres and others I'm afraid i can't put it in the package.

I have not tested, but I think it would be something like:

/**
     * Scope subscriptions in grace period.
     *
     * @param \Illuminate\Database\Eloquent\Builder $builder
     *
     * @return \Illuminate\Database\Eloquent\Builder
     */
    public function scopeInGrace($query)
    {
        return $query->select(DB::raw('CASE grace_interval
                               WHEN "hour" THEN date_add(ends_at, INTERVAL grace_period HOUR)
                               WHEN "day" THEN date_add(ends_at, INTERVAL grace_period DAY)
                               WHEN "week" THEN date_add(ends_at, INTERVAL grace_period WEEK)
                               WHEN "month" THEN date_add(ends_at, INTERVAL grace_period MONTH)
                               END
                               AS grace_ends_at'))
            ->where('grace_period', '>', 0)
            ->where('grace_ends_at', '>=', Carbon::now());
    }

from laravel-subby.

boryn avatar boryn commented on June 27, 2024

Hi @bpuig!

Maybe we could have a separate column grace_ends_at just as there is trial_ends_at?

Then for the scope we would just need a check if now() is greater than ends_at and lower than grace_ends_at? Similarly isInGrace() would be very easy to calculate.

from laravel-subby.

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.