Important: Only subscriptions linked to Stripe are shown. Deselect any subscriptions you do not want to cancel before continuing.
Total emails submitted: {{ count($entries) }}
Total Stripe subscriptions found: {{ $total_subscriptions }}
No active Stripe subscriptions were found for the provided email list.
@endif
{!! Form::open(['route' => 'tools.bulk_cancel_subscriptions.execute', 'method' => 'POST', 'id' => 'bulk-cancel-confirm-form']) !!}
@csrf
{!! Form::hidden('add_note', old('add_note', $add_note)) !!}
@foreach($entries as $entry)
Email: {{ $entry['email'] }}
@if(!empty($entry['invalid']))
Invalid email
@elseif(empty($entry['leads']))
No matching customers
@endif
@if(!empty($entry['invalid']))
@endif
@endforeach
@endif
This entry is not a valid email address and cannot be processed.
@elseif(empty($entry['leads']))No leads found for this email address.
@else @foreach($entry['leads'] as $lead)Lead #{{ $lead->id }} - {!! $lead->fullname !!} View customer
@if($lead->subscriptions->count() === 0)No Stripe-backed subscriptions for this lead.
@else| Subscription ID | Stripe ID | Package | Status | Monthly price | |
|---|---|---|---|---|---|
| {{ $subscription->id }} | {{ $subscription->stripe_id }} | {!! optional($subscription->package())->title ?? 'N/A' !!} | {{ $subscription->stateLong() }} | {!! $subscription->priceSymboled() !!} |