Files
ladill-woo-manager/resources/views/mail/notifications/woo-pro-past-due.blade.php
T
isaaccladandCursor cfdc8c7c09
Deploy Ladill Woo Manager / deploy (push) Successful in 2m11s
Add Woo Manager email notification milestones with shared mail templates.
New order, store connected, Pro expiry, and past-due alerts use the Ladill notification layout with woo branding; expiry reminders dedupe per threshold like hosting.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-07 02:59:45 +00:00

38 lines
1.2 KiB
PHP

@extends('mail.notifications.layout')
@section('email-header')
@include('mail.partials.brand-header', ['brand' => 'woo'])
@endsection
@section('email-footer')
@include('mail.partials.brand-footer', ['brand' => 'woo'])
@endsection
@section('content')
<div class="highlight-box highlight-box-warning">
<p class="highlight-box-text">Payment failed</p>
<p class="highlight-box-subtext">Woo Manager {{ $planLabel }}</p>
</div>
<h1 class="email-title">We could not renew your subscription</h1>
<p class="email-text">
Your Woo Manager {{ $planLabel }} renewal did not go through.
Top up your Ladill wallet and renew to restore full access.
</p>
@if($subscription->last_error)
<div class="email-details">
<p class="email-details-title">Details</p>
<div class="email-details-row">
<p class="email-details-label">Reason</p>
<p class="email-details-value">{{ $subscription->last_error }}</p>
</div>
</div>
@endif
<p style="text-align: center; margin-top: 24px;">
<a href="{{ $renewUrl }}" class="email-button">Manage subscription</a>
</p>
@endsection