@extends('layouts.admin') @section('title', 'Coupon Management - Orange Groceries Admin') @section('header_title', 'Discount Coupon Management') @section('content')
| Code | Title | Discount | Min Order | Used | Status | Actions |
|---|---|---|---|---|---|---|
| {{ $coupon->code }} | {{ $coupon->name }} | {{ $coupon->discount_type === 'flat' ? '₹' . number_format($coupon->discount_value, 2) : $coupon->discount_value . '%' }} | ₹{{ number_format($coupon->min_purchase, 2) }} | {{ $coupon->used_count }} times | {{ $coupon->status ? 'Active' : 'Disabled' }} |