@forelse($discounts as $d)
| {{ $d->name }} |
{{ $d->type === 'percentage' ? "Potongan {$d->value}%" : "Potongan Rp " . number_format($d->value, 0, ',', '.') }}
|
Rp {{ number_format($d->min_purchase, 0, ',', '.') }} |
{{ $d->branch->name ?? 'Semua Cabang (Global)' }} |
@if($d->is_active)
AKTIF
@else
NON-AKTIF
@endif
|
|
@empty
| Belum ada promo terdaftar. |
@endforelse