| @@ -7,9 +7,9 @@ | ||
| 7 | 7 | */ |
| 8 | 8 | |
| 9 | 9 | $reminder = (isset($reminder) && is_array($reminder)) ? $reminder : []; |
| 10 | 10 | $billingDate = \FluentCart\Framework\Support\Arr::get($reminder, 'billing_date', $subscription->next_billing_date); |
| 11 | -$billingLabel = $billingDate ? \FluentCart\App\Services\DateTime\DateTime::gmtToTimezone($billingDate)->format('M d, Y h:i A') : ''; | |
| 11 | +$billingLabel = \FluentCart\App\Services\DateTime\DateFormatter::format($billingDate, true, $order); | |
| 12 | 12 | $renewalAmount = $subscription->recurring_total ?? 0; |
| 13 | 13 | $billingInterval = $subscription->billing_interval ?? ''; |
| 14 | 14 | ?> |
| 15 | 15 | |