@extends('layouts.admin') @section('title', 'Coupons') @section('content')
| Code | Type | Value | Min Order | Valid | Status | Actions |
|---|---|---|---|---|---|---|
| {{ $coupon->code }} | {{ ucfirst($coupon->type) }} | {{ $coupon->type === 'percent' ? $coupon->value.'%' : '₹'.number_format($coupon->value, 2) }} | ₹{{ number_format($coupon->min_order_amount, 2) }} | {{ $coupon->valid_from->format('d M Y') }} - {{ $coupon->valid_to->format('d M Y') }} | {{ ucfirst($coupon->status) }} | Edit |
| No coupons yet. | ||||||