@extends('layouts.admin') @section('title', 'Gestion des Codes Promo') @push('styles') @endpush @section('sub_header') @include('admin.partials.settings-tabs') @endsection @section('content')
| Code & Catégorie | Réduction | Période | Utilisation | Statut | Actions |
|---|---|---|---|---|---|
|
{{ $coupon->code }}
@if($coupon->category)
{{ $coupon->category->nom }}
@else
Partout sur le site
@endif
|
{{ $coupon->type == 'percent' ? $coupon->value . '%' : number_format($coupon->value, 0, ',', ' ') . ' F' }}
@if($coupon->min_purchase > 0)
Dès
{{ number_format($coupon->min_purchase, 0, ',', ' ') }} F
@endif
|
@if($coupon->start_date || $coupon->end_date)
Du : {{ $coupon->start_date ? $coupon->start_date->format('d/m/Y') : '∞' }}
Au : {{ $coupon->end_date ? $coupon->end_date->format('d/m/Y') : '∞' }}
@else
Illimité
@endif
|
{{ $coupon->used_count }}
sur {{ $coupon->usage_limit ?? '∞' }}
|
@if($coupon->is_active) Actif @else Inactif @endif |
Modifier
|
|
| Aucun code promo trouvé. | |||||