Files
ladill-care/app/Console/Commands/RenewProSubscriptionsCommand.php
isaaccladandCursor 4bc485dfea
Deploy Ladill Care / deploy (push) Successful in 35s
Add Care Pro billing, renewal, and scheduler.
Organizations can subscribe from wallet, expire correctly on free tier, and renew nightly via care:pro-renew.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-30 01:07:23 +00:00

23 lines
644 B
PHP

<?php
namespace App\Console\Commands;
use App\Services\Care\ProRenewalService;
use Illuminate\Console\Command;
class RenewProSubscriptionsCommand extends Command
{
protected $signature = 'care:pro-renew';
protected $description = 'Charge the Ladill wallet for due Care Pro subscriptions (and downgrade after the grace window).';
public function handle(ProRenewalService $renewals): int
{
$due = $renewals->dueOrganizations();
$this->info("Renewing {$due->count()} due organization(s).");
$due->each(fn ($organization) => $renewals->renewIfDue($organization));
return self::SUCCESS;
}
}