Fix for creating plan renewal invoices
This commit is contained in:
parent
0f37d5f618
commit
e9f05c7006
1 changed files with 1 additions and 1 deletions
|
|
@ -50,7 +50,7 @@ class SendRenewalInvoices extends Command
|
|||
$this->info(date('Y-m-d').' Running SendRenewalInvoices...');
|
||||
|
||||
// get all accounts with plans expiring in 10 days
|
||||
$companies = Company::whereRaw('datediff(plan_expires, curdate()) = 10')
|
||||
$companies = Company::whereRaw("datediff(plan_expires, curdate()) = 10 and (plan = 'pro' or plan = 'enterprise')")
|
||||
->orderBy('id')
|
||||
->get();
|
||||
$this->info(count($companies).' companies found renewing in 10 days');
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue