@extends('layouts.shop') @section('title', 'My Gift Cards - Hair Niche By Shelly') @section('content')
{{ $card->code }}
From: {{ $card->creator->name ?? 'Unknown' }} ({{ $card->creator->email ?? 'N/A' }})
Expires: {{ $card->expires_at->format('M d, Y') }}
{{ config('app.currency', '₹') }}{{ number_format($card->amount, 2) }}
{{ ucfirst($card->status) }}Amount: {{ config('app.currency', '₹') }}{{ number_format($card->amount, 2) }}
To: {{ $card->recipient_email ?? 'Any' }}
Expires: {{ $card->expires_at->format('M d, Y') }}
You haven't created any gift cards yet.
@endif