@extends('layouts.admin') @section('title', 'Manage Coupons') @section('page_heading', 'Manage Coupons') @section('page_actions') Create Coupon @endsection @section('content')
| Code | Amount | Status | Created | Actions |
|---|---|---|---|---|
| {{ $coupon->code }} | ${{ number_format((float) $coupon->amount, 2) }} | @if ($coupon->is_active) Active @else Inactive @endif | {{ $coupon->created_at?->format('M d, Y') }} | Edit |
| No coupons found. | ||||