Differentiate Checkout Coupon and Redeem Coupon stores. Redeem Coupon stores can auto-update first coupon code every 20 minutes.
| Store Name | Affiliate URL | Coupon Type | Status | All Coupons | Action |
|---|---|---|---|---|---|
|
{{ $row->store_name ?: '-' }}
{{ $row->store_slug ?: '-' }}
|
@if (!empty($row->affiliate_url))
{{ $row->affiliate_url }}
|
{{ $row->coupon_flow_type }} |
{{ $row->validation_status ?: 'Pending' }}
@if (!empty($row->last_checked_at))
{{ $this->dateLabel($row->last_checked_at) }}
@endif
|
@if ($row->coupon_count > 0)
@foreach ($row->coupons as $coupon)
{{ $coupon['title'] }}
@if (!empty($coupon['code']))
{{ $coupon['code'] }}
@endif
@endforeach
@else
@endif
|
@if ($editMode)
@endif
|
| No stores found. Paste store URLs and click Import. | |||||
| Coupon | Type | Code | Status | Last Checked |
|---|---|---|---|---|
|
{{ $coupon['title'] ?: '-' }}
{{ $coupon['destination_url'] ?: '-' }}
|
{{ $coupon['type'] ?: '-' }} | {{ $coupon['code'] ?: '-' }} | {{ $coupon['status'] ?: 'Pending' }} | {{ $this->dateLabel($coupon['last_checked_at'] ?? '-') }} |
| {{ $coupon['notes'] }} | ||||
| No coupons found. | ||||