@extends('admin.layouts.app') @section('content')

{{ $discounts->count() }} code{{ $discounts->count() > 1 ? 's' : '' }} promo

Nouveau code promo
@forelse ($discounts as $discount) @empty @endforelse
Nom Code Remise Type Période Statut Actions
{{ $discount->name }} @if($discount->coupon_code) {{ strtoupper($discount->coupon_code) }} @else Automatique @endif @if($discount->discount_type === 'percentage') {{ $discount->discount_amount }}% @else {{ number_format($discount->discount_amount, 2, ',', ' ') }} € @endif @php $types = ['all_products' => 'Tous', 'category' => 'Catégorie', 'cart_value' => 'Panier', 'quantity' => 'Quantité']; @endphp {{ $types[$discount->type] ?? $discount->type }} @if($discount->starts_at || $discount->ends_at) {{ $discount->starts_at?->format('d/m/Y') ?? '…' }} → {{ $discount->ends_at?->format('d/m/Y') ?? '…' }} @else Illimité @endif @if($discount->is_active) Actif @else Inactif @endif
@csrf @method('DELETE')
Aucun code promo.
@endsection