@extends('admin.layout') @section('title', 'Discount Promo Codes') @section('content')

Create Promo Code

@csrf
Active Discount Coupons
@forelse($promos as $promo) @empty @endforelse
Coupon Code Discount Status Action
{{ $promo->promo_code ?? $promo->promo_name }} ₹{{ number_format((float)$promo->discount, 2) }} Active Delete
No active promo codes.
@endsection