إدارة وتحكم في كوبونات الخصم المتاحة للمستخدمين
| الكود | النوع | القيمة | الحد الأقصى | المستخدم | تاريخ الانتهاء | الحالة | إجراءات |
|---|---|---|---|---|---|---|---|
|
{{ $coupon->code }}
@if($coupon->description)
{{ Str::limit($coupon->description, 30) }}
@endif
|
@if($coupon->type == 'percent') نسبة مئوية @else مبلغ ثابت @endif |
@if($coupon->type == 'percent')
{{ $coupon->value }}%
@else
${{ $coupon->value }}
@endif
|
@if($coupon->usage_limit)
{{ $coupon->usage_limit }}
@else
غير محدود
@endif
|
{{ $coupon->used_count }}
@if($coupon->usage_limit)
|
@if($coupon->expires_at)
{{ $coupon->expires_at->format('Y/m/d') }}
{{ $coupon->expires_at->diffForHumans() }}
|
@php $isExpired = $coupon->expires_at && $coupon->expires_at->isPast(); $isUsedUp = $coupon->usage_limit && $coupon->used_count >= $coupon->usage_limit; @endphp @if(!$coupon->active) معطل @elseif($isExpired) منتهي الصلاحية @elseif($isUsedUp) مستنفد @else مفعل @endif |