Gestiona las promociones y descuentos
| # | Nombre | Tipo | Valor | Vigencia | Usos | Estado | Acciones |
|---|---|---|---|---|---|---|---|
| {{ $promotion->id }} |
{{ $promotion->name }}@if($promotion->coupons_count > 0) {{ $promotion->coupons_count }} cupón(es) @endif |
@switch($promotion->discount_type) @case('percent') Porcentaje @break @case('fixed') Monto Fijo @break @case('bxgy') {{ $promotion->buy_qty }}x{{ $promotion->get_qty }} @break @endswitch | @if($promotion->discount_type === 'percent') {{ number_format($promotion->discount_value, 0) }}% @elseif($promotion->discount_type === 'fixed') ${{ number_format($promotion->discount_value, 2) }} @else - @endif |
@if($promotion->starts_at && $promotion->ends_at)
{{ $promotion->starts_at->format('d/m/Y') }} {{ $promotion->ends_at->format('d/m/Y') }} @elseif($promotion->starts_at) Desde {{ $promotion->starts_at->format('d/m/Y') }} @elseif($promotion->ends_at) Hasta {{ $promotion->ends_at->format('d/m/Y') }} @else Sin límite @endif |
{{ $promotion->uses_count }} @if($promotion->max_uses) / {{ $promotion->max_uses }} @endif |
is_active) checked @endif
style="cursor: pointer;">
|
|
|
No se encontraron promociones Crea tu primera promoción para ofrecer descuentos Crear Promoción |
|||||||