@extends('admin.layout') @section('title', 'Gestión de Cupones') @section('page-title', 'Kupon Yönetimi') @section('content')
İndirim kuponlarını buradan yönetebilirsiniz. Sepette girildiğinde indirim uygulanır.
| Kupon Adı | Kupon Kodu | İndirim Tutarı | Kullanım | Geçerlilik | Durum | İşlemler |
|---|---|---|---|---|---|---|
| {{ $coupon->name }} | {{ $coupon->code }} |
{{ number_format($coupon->amount, 0, ',', '.') }} @if ($coupon->discount_type == 'percent') % @else ₺ @endif | {{ $coupon->use_count }} @if ($coupon->max_uses) / {{ $coupon->max_uses }} @else (sınırsız) @endif | @if ($coupon->valid_from || $coupon->valid_until) {{ $coupon->valid_from?->format('d.m.Y') ?? '—' }} - {{ $coupon->valid_until?->format('d.m.Y') ?? '—' }} @else — @endif |
Henüz kupon bulunmamaktadır.
İlk Kuponu Oluştur