Created
March 20, 2018 07:45
-
-
Save crmpicco/7a8336bc0f171167856a3cb1fa042505 to your computer and use it in GitHub Desktop.
Get Subscription Days Past Due
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$subscriptionRenewalDate = \DateTime::createFromFormat('Y-m-d H:i:s', date('Y-m-d H:i:s', $subscription->currentTermEnd)); | |
$now = new \DateTime('now'); | |
$daysPastDue = $now->diff($subscriptionRenewalDate)->format('%a'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment