@extends('layouts.admin') @section('title', 'Gift Cards') @section('header', 'Gift Cards') @section('content')
Create wallet gift cards customers can redeem in the app, then track wallet credits as they happen.
| Code | Amount | Redemptions | Expires | Status | Actions |
|---|---|---|---|---|---|
|
{{ $giftCard->code }}
{{ $giftCard->title ?: 'Untitled' }}
|
{{ $currencySymbol ?? 'INR ' }}{{ number_format($giftCard->amount, App\Models\AppSetting::currencyDecimals()) }} |
{{ $giftCard->redeemed_count }}{{ $giftCard->max_redemptions ? ' / ' . $giftCard->max_redemptions : '' }}
{{ $currencySymbol ?? 'INR ' }}{{ number_format($giftCard->redemptions_count * $giftCard->amount, App\Models\AppSetting::currencyDecimals()) }} credited
|
{{ $giftCard->expires_at ? $giftCard->expires_at->format('d M Y, h:i A') : 'Never' }} | {{ $giftCard->is_redeemable ? 'Redeemable' : 'Inactive' }} | |
| No gift cards found. | |||||