@extends('layouts.vendor') @section('page-title', 'Marketing') @push('styles') @endpush @section('content')
{{-- Page Header --}} {{-- Stats Row --}}
Total Coupons {{ $stats['total'] }}
Active {{ $stats['active'] }}
Expired {{ $stats['expired'] }}
{{-- Coupons Table --}}
Coupon Codes
@forelse($coupons as $coupon) @empty @endforelse
Code Type Value Min Purchase Usage Validity Status Actions
{{ $coupon->code }} {{ $coupon->type }} {{ $coupon->type === 'percent' ? $coupon->value . '%' : price($coupon->value) }} {{ $coupon->min_purchase ? price($coupon->min_purchase) : '-' }} {{ $coupon->used_count ?? 0 }}{{ $coupon->usage_limit ? ' / ' . $coupon->usage_limit : '' }} @if($coupon->valid_until) @if($coupon->valid_until->isPast()) Expired {{ $coupon->valid_until->format('M d, Y') }} @else Until {{ $coupon->valid_until->format('M d, Y') }} @endif @else No expiry @endif {{ $coupon->is_active ? 'Active' : 'Inactive' }}
@csrf
@csrf @method('DELETE')

No coupons yet. Create your first discount to boost sales.

@if($coupons->hasPages())
{{ $coupons->links() }}
@endif
{{-- Create Coupon Modal --}} @endsection